noUpOrder.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <view>
  3. <view class="tab">
  4. <u-tabs :list="tab" @click="click" :lineHeight="5"></u-tabs>
  5. </view>
  6. <view class="goodsList">
  7. <view class="item" v-for="(item, index) in list" :key="index">
  8. <view class="title">{{ item.buyUserName }}
  9. <view class="state" v-if="item.finishStatus == 1 && item.upStatus == 1">
  10. <text class="icon">&#xe830;</text>
  11. <text>未上架</text>
  12. </view>
  13. <view class="state" v-else-if="item.finishStatus == 1 && item.upStatus == 3">
  14. <text class="icon">&#xe830;</text>
  15. <text>已下架</text>
  16. </view>
  17. <view class="state" v-else-if="item.finishStatus == 1 && item.upStatus == 2 && item.resaleStatus == 0">
  18. <text class="icon">&#xe830;</text>
  19. <text>未转售</text>
  20. </view>
  21. <view class="state" v-else>
  22. <text class="icon" style="color: #13ce66">&#xe830;</text>
  23. <text>已完成</text>
  24. </view>
  25. </view>
  26. <view class="title">{{ item.phone }}</view>
  27. <view>
  28. <view style="font-size: 15px;color: #a0a2a6;">
  29. 订单 {{ item.tradeNo }}
  30. </view>
  31. <view style="padding-top: 4px;font-size: 15px;color: #a0a2a6;">
  32. {{ item.goodsNames }} {{ item.totalWeight }}{{ item.goodsUnit }}
  33. </view>
  34. <view style="padding-top: 6px;font-size: 17px;color: #ff5722;font-weight: bold;">¥ {{ item.totalPrice }}</view>
  35. </view>
  36. <view class="clear"></view>
  37. <view class="op">
  38. <view class="date">{{ item.createTime }}</view>
  39. <template v-if="item.phone">
  40. <!-- <view class="state" style="color: #3c9cff;" @click="callNumber(item.phone)">拨打电话</view> -->
  41. <a :href="'tel:'+item.phone" class="an down_btn">拨打电话</a>
  42. </template>
  43. </view>
  44. </view>
  45. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  46. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. import permision from "@/js_sdk/wa-permission/permission.js"
  52. export default {
  53. data() {
  54. return {
  55. tab: [
  56. /* {
  57. name: '全部',
  58. peopleConfirmStatus: '', //边民确认状态
  59. cooperEntrustStatus: '', //互助委托申报确认状态
  60. applyConfirmStatus: '', //进口申报确认状态
  61. finishStatus: 1, //订单完成状态
  62. upStatus: '', //订单上架状态(1=未上架,2=上架,3=已下架)
  63. resaleStatus: '', //订单转售状态
  64. Sxb010Status: '', //扣款回执状态
  65. }, */
  66. {
  67. name: '未上架',
  68. finishStatus: 1,
  69. upStatus: 1,
  70. },
  71. {
  72. name: '已下架',
  73. finishStatus: 1,
  74. upStatus: 3,
  75. },
  76. {
  77. name: '未转售',
  78. finishStatus: 1,
  79. upStatus: 2,
  80. resaleStatus: 0
  81. }
  82. ],
  83. param: {
  84. pageNo: 1,
  85. pageSize: 10,
  86. finishStatus: 1,
  87. upStatus: 1,
  88. },
  89. list: [],
  90. loadMore: true,
  91. id: '',
  92. flag: '',
  93. };
  94. },
  95. onShow() {
  96. this.getData();
  97. },
  98. methods: {
  99. getData() {
  100. this.http.request({
  101. url: '/level-one-server/app/TbOrder/getPeopleOrderList',
  102. loading: 'false',
  103. data: this.param,
  104. success: res => {
  105. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  106. if (res.data.data) {
  107. this.list = res.data.data;
  108. }
  109. }
  110. });
  111. },
  112. // 点击tab切换
  113. click(e) {
  114. console.log(e);
  115. this.param.peopleConfirmStatus = e.peopleConfirmStatus;
  116. this.param.cooperEntrustStatus = e.cooperEntrustStatus;
  117. this.param.applyConfirmStatus = e.applyConfirmStatus;
  118. this.param.finishStatus = e.finishStatus;
  119. this.param.resaleStatus = e.resaleStatus;
  120. this.param.upStatus = e.upStatus;
  121. this.param.Sxb010Status = e.Sxb010Status;
  122. this.refresh();
  123. },
  124. // 刷新数据
  125. refresh() {
  126. this.loadMore = true;
  127. this.param.pageNo = 1;
  128. this.list = [];
  129. this.getData();
  130. },
  131. callNumber(phone) {
  132. permision.gotoAppPermissionSetting();
  133. uni.makePhoneCall({
  134. phoneNumber: phone,
  135. success: function(ress) {
  136. console.log("拨打电话成功!",JSON.stringify(ress))
  137. },
  138. fail: function() {
  139. console.log("拨打电话失败!")
  140. }
  141. })
  142. /* plus.android.requestPermissions(
  143. ["android.permission.CALL_PHONE"],
  144. function(resultObj) {
  145. var result = 0;
  146. for (var i = 0; i < resultObj.granted.length; i++) {
  147. var grantedPermission = resultObj.granted[i];
  148. console.log('已获取的权限:' + grantedPermission);
  149. result = 1
  150. }
  151. for (var i = 0; i < resultObj.deniedPresent.length; i++) {
  152. var deniedPresentPermission = resultObj.deniedPresent[i];
  153. console.log('拒绝本次申请的权限:' + deniedPresentPermission);
  154. result = 0
  155. }
  156. for (var i = 0; i < resultObj.deniedAlways.length; i++) {
  157. var deniedAlwaysPermission = resultObj.deniedAlways[i];
  158. console.log('永久拒绝申请的权限:' + deniedAlwaysPermission);
  159. result = -1
  160. }
  161. console.log(result);
  162. if(result == 1){
  163. uni.makePhoneCall({
  164. phoneNumber: "10086",//电话号码
  165. success(ress) {
  166. console.log("拨打电话成功",JSON.stringify(ress))
  167. },
  168. fail(err) {
  169. console.log("拨打电话失败",'err')
  170. }
  171. });
  172. }else{
  173. uni.showToast({
  174. title:"请开启拨号权限",
  175. icon:"error",
  176. })
  177. }
  178. },
  179. function(error) {
  180. console.log('申请权限错误:' + error.code + " = " + error.message);
  181. }
  182. ); */
  183. },
  184. },
  185. //下拉刷新
  186. onPullDownRefresh() {
  187. setTimeout(() => {
  188. this.refresh();
  189. uni.stopPullDownRefresh();
  190. }, 1000);
  191. },
  192. //上拉加载
  193. onReachBottom() {
  194. if (this.loadMore) {
  195. this.param.pageNo++;
  196. this.getData();
  197. }
  198. }
  199. };
  200. </script>
  201. <style lang="scss">
  202. page {
  203. background-color: $pg;
  204. }
  205. .down_btn {
  206. color: #f0f4f7;
  207. width: 66px;
  208. background-color: #3c9cff;
  209. text-align: center;
  210. border-radius: 10px;
  211. font-size: 14px;
  212. padding: 3px 5px;
  213. text-decoration: none;
  214. }
  215. .state {
  216. margin-right: -70px;
  217. }
  218. </style>