order.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 }}
  9. <view class="state" v-if="item.peopleConfirmStatus == 0 || item.cooperEntrustStatus == 0 || item.applyConfirmStatus == 0">
  10. <text class="icon">&#xe830;</text>
  11. <text>未确认</text>
  12. </view>
  13. <view class="state" v-if="item.peopleConfirmStatus == 1 && item.cooperEntrustStatus == 1 && item.applyConfirmStatus == 1 &&item.finishStatus == 0">
  14. <text class="icon">&#xe830;</text>
  15. <text>进口中</text>
  16. </view>
  17. <view class="state" v-if="item.finishStatus == 1&&item.resaleStatus == 0">
  18. <text class="icon">&#xe830;</text>
  19. <text>已完成</text>
  20. </view>
  21. <view class="state" v-if="item.resaleStatus == 1">
  22. <text class="icon" style="color: #13ce66">&#xe830;</text>
  23. <text>已转售</text>
  24. </view>
  25. </view>
  26. <image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  27. <view class="con">
  28. <view class="productName omit">{{ item.goodsNames }}</view>
  29. <view class="desc omit">
  30. <text>重量 {{ item.totalWeight }}</text>
  31. <text>{{ item.tradeAreaName }}</text>
  32. </view>
  33. <view class="price">¥ {{ item.totalPrice }}</view>
  34. </view>
  35. <view class="clear"></view>
  36. <view class="op">
  37. <view class="date">{{ item.createTime }}</view>
  38. <template v-if="item.finishStatus == 1 && item.resaleStatus == 0">
  39. <view class="an" style="color: #f44336" @click.stop="resale(item)">订单转售</view>
  40. </template>
  41. <template v-if="item.resaleStatus == 1 && item.beingOrder == 0">
  42. <view class="an" style="color: #f44336" @click.stop="updateResalePrice(item.id)">修改转售价格</view>
  43. </template>
  44. </view>
  45. </view>
  46. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  47. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. tab: [
  56. {
  57. name: '全部',
  58. peopleConfirmStatus: '', //边民确认状态
  59. cooperEntrustStatus: '', //互助委托申报确认状态
  60. applyConfirmStatus: '', //进口申报确认状态
  61. finishStatus: '', //订单完成状态
  62. resaleStatus: '' //订单转售状态
  63. },
  64. {
  65. name: '进口中',
  66. peopleConfirmStatus: 1,
  67. cooperEntrustStatus: 1,
  68. applyConfirmStatus: 1,
  69. finishStatus: 0,
  70. resaleStatus: 0
  71. },
  72. {
  73. name: '已完成',
  74. peopleConfirmStatus: 1,
  75. cooperEntrustStatus: 1,
  76. applyConfirmStatus: 1,
  77. finishStatus: 1,
  78. resaleStatus: 0
  79. },
  80. {
  81. name: '已转售',
  82. peopleConfirmStatus: 1,
  83. cooperEntrustStatus: 1,
  84. applyConfirmStatus: 1,
  85. finishStatus: 1,
  86. resaleStatus: 1
  87. }
  88. ],
  89. param: {
  90. pageNo: 1,
  91. pageSize: 10
  92. },
  93. list: [],
  94. loadMore: true,
  95. id: '',
  96. flag: '',
  97. };
  98. },
  99. onLoad() {
  100. this.getData();
  101. uni.$on('face', res => {
  102. if(this.flag == 1) {
  103. this.http.request({
  104. url: '/level-one-server/app/TbOrder/confirmOrder',
  105. data: { orderId: this.id },
  106. success: resp => {
  107. uni.showToast({ title: '订单确认成功' });
  108. this.refresh();
  109. }
  110. });
  111. } else if(this.flag == 2) {
  112. this.http.request({
  113. url: '/level-one-server/app/TbOrder/applyOrder',
  114. data: { orderId: this.id },
  115. success: resp => {
  116. uni.showToast({ title: '进口申报确认成功' });
  117. this.refresh();
  118. }
  119. });
  120. }
  121. })
  122. },
  123. methods: {
  124. getData() {
  125. this.http.request({
  126. url: '/level-one-server/app/TbOrder/getList',
  127. loading: 'false',
  128. data: this.param,
  129. success: res => {
  130. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  131. if (res.data.data) {
  132. this.list.push(...res.data.data);
  133. }
  134. }
  135. });
  136. },
  137. // 点击tab切换
  138. click(e) {
  139. console.log(e);
  140. this.param.peopleConfirmStatus = e.peopleConfirmStatus;
  141. this.param.cooperEntrustStatus = e.cooperEntrustStatus;
  142. this.param.applyConfirmStatus = e.applyConfirmStatus;
  143. this.param.finishStatus = e.finishStatus;
  144. this.param.resaleStatus = e.resaleStatus;
  145. this.refresh();
  146. },
  147. detail(item) {
  148. uni.navigateTo({url: '/pages/market/one/leader/detail?id=' + item.id});
  149. },
  150. resale(item) {
  151. uni.navigateTo({url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)});
  152. },
  153. updateResalePrice(id) {
  154. uni.navigateTo({url: '/pages/market/two/leader/updatePrice?id=' + id});
  155. },
  156. // 刷新数据
  157. refresh() {
  158. this.loadMore = true;
  159. this.param.pageNo = 1;
  160. this.list = [];
  161. this.getData();
  162. }
  163. },
  164. //下拉刷新
  165. onPullDownRefresh() {
  166. setTimeout(() => {
  167. this.refresh();
  168. uni.stopPullDownRefresh();
  169. }, 1000);
  170. },
  171. //上拉加载
  172. onReachBottom() {
  173. if (this.loadMore) {
  174. this.param.pageNo++;
  175. this.getData();
  176. }
  177. }
  178. };
  179. </script>
  180. <style lang="scss">
  181. page {
  182. background-color: $pg;
  183. }
  184. .state{
  185. margin-right: -70px;
  186. }
  187. </style>