order.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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" @click="detail(item)">
  8. <view class="title">{{ item.enterpriseName }}</view>
  9. <view class="state" v-if="item.enterpriseConfirm == 0">
  10. <text class="icon">&#xe830;</text>
  11. <text>商家未确认</text>
  12. </view>
  13. <view class="state" v-if="item.enterpriseConfirm == 1">
  14. <text class="icon" style="color: #13ce66">&#xe830;</text>
  15. <text>已确认</text>
  16. </view>
  17. <view class="state" v-if="item.enterpriseConfirm == 2">
  18. <text class="icon" style="color: #f44336">&#xe622;</text>
  19. <text>已取消</text>
  20. </view>
  21. <image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  22. <view class="con">
  23. <view class="productName omit">{{ item.goodsNames }}</view>
  24. <view class="desc omit">
  25. <text>重量 {{ item.totalWeight }}</text>
  26. <text>{{ item.tradeAreaName }}</text>
  27. </view>
  28. <view class="price">¥ {{ item.totalPrice }}</view>
  29. </view>
  30. <view class="clear"></view>
  31. <view class="op">
  32. <view class="date">2022-12-12:12:12</view>
  33. <template v-if="item.enterpriseConfirm == 0">
  34. <view class="an" style="color: #f44336" v-if="user.userType == 2" @click.stop="confirm(item.id)">取消订单</view>
  35. </template>
  36. </view>
  37. </view>
  38. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  39. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. tab: [
  48. {
  49. name: '全部',
  50. enterpriseConfirm: '',
  51. apply: ''
  52. },
  53. {
  54. name: '待确认',
  55. enterpriseConfirm: 0,
  56. apply: 0
  57. }, //enterpriseConfirm:商户确认(0=待确认,1=是,2=否)
  58. {
  59. name: '申报中',
  60. enterpriseConfirm: 1,
  61. apply: 0
  62. },
  63. {
  64. name: '已完成',
  65. enterpriseConfirm: 2,
  66. apply: 1
  67. }, //apply:申报[0=待申报,1=申报通过,2=申报不通过]
  68. {
  69. name: '已取消',
  70. enterpriseConfirm: 3,
  71. apply: ''
  72. }
  73. ],
  74. param: {
  75. pageNo: 1,
  76. pageSize: 10
  77. },
  78. list: [],
  79. loadMore: true,
  80. user: this.getUser()
  81. };
  82. },
  83. onLoad() {
  84. this.getData();
  85. },
  86. methods: {
  87. getData() {
  88. this.http.request({
  89. url: '/level-one-server/app/TbOrder/getList',
  90. loading: 'false',
  91. data: this.param,
  92. success: res => {
  93. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  94. if (res.data.data) {
  95. this.list.push(...res.data.data);
  96. }
  97. this.list.map(item => {
  98. if (item.cancelPeople == 1) {
  99. item.enterpriseConfirm = 3;
  100. }
  101. });
  102. }
  103. });
  104. },
  105. //点击tab切换
  106. click(e) {
  107. console.log(e);
  108. this.param.orderStatus = e.enterpriseConfirm;
  109. this.param.apply = e.apply;
  110. this.refresh();
  111. },
  112. detail(item) {
  113. uni.navigateTo({url: '/pages/market/one/leader/detail?id=' + item.id});
  114. },
  115. //刷新数据
  116. refresh() {
  117. this.loadMore = true;
  118. this.param.pageNo = 1;
  119. this.list = [];
  120. this.getData();
  121. },
  122. //通知商家
  123. confirm(id) {
  124. uni.showModal({
  125. title: '提示',
  126. content: '是否确认取消订单?',
  127. success: res => {
  128. if (res.confirm) {
  129. this.http.request({
  130. url: '/level-one-server/app/TbOrder/cancelOrder',
  131. data: { orderId: id },
  132. success: resp => {
  133. uni.showToast({ title: '操作成功' });
  134. this.refresh();
  135. }
  136. });
  137. }
  138. }
  139. });
  140. }
  141. },
  142. //下拉刷新
  143. onPullDownRefresh() {
  144. setTimeout(() => {
  145. this.refresh();
  146. uni.stopPullDownRefresh();
  147. }, 1000);
  148. },
  149. //上拉加载
  150. onReachBottom() {
  151. if (this.loadMore) {
  152. this.param.pageNo++;
  153. this.getData();
  154. }
  155. }
  156. };
  157. </script>
  158. <style lang="scss">
  159. page {
  160. background-color: $pg;
  161. }
  162. </style>