order.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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">广西京东自营店南宁分店</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 == 3">
  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>50吨</text>
  26. <text>{{ item.tradeAreaName }}</text>
  27. </view>
  28. <view class="price">¥ {{ item.price }}</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"
  35. @click.stop="confirm(item.id, 2,item.enterpriseConfirm)">取消订单</view>
  36. <view class="an" style="color: #4581fb" v-if="user.userType == 3"
  37. @click.stop="confirm(item.id, 1)">确认订单</view>
  38. <!-- <view class="an" style="color: #f44336" @click.stop="confirm(item.id, 2, '确认拒绝?')">取消订单</view>
  39. <view class="an" style="color: #4581fb" @click.stop="confirm(item.id, 1, '确认接单?')">确认订单</view> -->
  40. </template>
  41. </view>
  42. </view>
  43. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  44. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. tab: [{
  53. name: '全部',
  54. enterpriseConfirm: '',
  55. apply: ''
  56. },
  57. {
  58. name: '待确认',
  59. enterpriseConfirm: 0,
  60. apply: 0
  61. }, //enterpriseConfirm:商户确认(0=待确认,1=是,2=否)
  62. {
  63. name: '申报中',
  64. enterpriseConfirm: 1,
  65. apply: 0
  66. },
  67. {
  68. name: '已完成',
  69. enterpriseConfirm: 2,
  70. apply: 1
  71. }, //apply:申报[0=待申报,1=申报通过,2=申报不通过]
  72. {
  73. name: '已取消',
  74. enterpriseConfirm: 3,
  75. apply: ''
  76. }
  77. ],
  78. param: {
  79. pageNo: 1,
  80. pageSize: 10
  81. },
  82. list: [],
  83. loadMore: true,
  84. user: this.getUser()
  85. };
  86. },
  87. onLoad() {
  88. this.getData();
  89. },
  90. methods: {
  91. getData() {
  92. this.http.request({
  93. url: '/level-one-server/app/TbOrder/getList',
  94. loading: 'false',
  95. data: this.param,
  96. success: res => {
  97. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  98. if (res.data.data) {
  99. this.list.push(...res.data.data);
  100. }
  101. this.list.map(item => {
  102. if(item.cancelPeople==1){
  103. item.enterpriseConfirm = 3
  104. }
  105. })
  106. }
  107. });
  108. },
  109. //点击tab切换
  110. click(e) {
  111. console.log(e)
  112. this.param.orderStatus = e.enterpriseConfirm;
  113. this.param.apply = e.apply
  114. this.refresh();
  115. },
  116. detail(item) {
  117. uni.navigateTo({
  118. url: '/pages/market/one/merchant/order/detail?id=' + item.id
  119. });
  120. },
  121. //刷新数据
  122. refresh() {
  123. this.loadMore = true;
  124. this.param.pageNo = 1;
  125. this.list = [];
  126. this.getData();
  127. },
  128. //通知商家
  129. confirm(id, type, enterpriseConfirm) {
  130. if (type == 1) {
  131. uni.showModal({
  132. title: '提示',
  133. content: '是否确认接单?',
  134. success: res => {
  135. if (res.confirm) {
  136. this.http.request({
  137. // url: '/level-one-server/app/TbGoodsTransit/update',
  138. url: '/level-one-server/app/TbGoodsTransit/updateEnterpriseConfirm',
  139. data: {
  140. id: id,
  141. enterpriseConfirm: 1
  142. },
  143. method: 'POST',
  144. success: resp => {
  145. uni.showToast({
  146. title: '操作成功'
  147. });
  148. this.refresh();
  149. }
  150. });
  151. }
  152. }
  153. });
  154. } else {
  155. uni.showModal({
  156. title: '提示',
  157. content: '是否确认取消订单?',
  158. success: res => {
  159. if (res.confirm) {
  160. this.http.request({
  161. url: '/level-one-server/app/TbOrder/cancelOrder',
  162. data: { orderId: id,orderStatus: enterpriseConfirm },
  163. success: resp => {
  164. uni.showToast({
  165. title: '操作成功'
  166. });
  167. this.refresh();
  168. }
  169. });
  170. }
  171. }
  172. });
  173. }
  174. }
  175. },
  176. //下拉刷新
  177. onPullDownRefresh() {
  178. setTimeout(() => {
  179. this.refresh();
  180. uni.stopPullDownRefresh();
  181. }, 1000);
  182. },
  183. //上拉加载
  184. onReachBottom() {
  185. if (this.loadMore) {
  186. this.param.pageNo++;
  187. this.getData();
  188. }
  189. }
  190. };
  191. </script>
  192. <style lang="scss">
  193. page {
  194. background-color: $pg;
  195. }
  196. </style>