order.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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">
  10. <text class="icon">&#xe830;</text>
  11. <text>未确认</text>
  12. </view>
  13. <view class="state" v-if="item.peopleConfirmStatus == 1 && item.apply == 0">
  14. <text class="icon" style="color: #13ce66">&#xe830;</text>
  15. <text>已确认</text>
  16. </view>
  17. <view class="state" v-if="item.resaleStatus == 1">
  18. <text class="icon" style="color: #13ce66">&#xe830;</text>
  19. <text>已转售</text>
  20. </view>
  21. <view class="state" v-if="item.finishStatus == 3">
  22. <text class="icon" style="color: #f44336">&#xe622;</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.peopleConfirmStatus == 0">
  39. <view class="an" style="color: #f44336" @click.stop="confirmOrder(item.id)">边民确认</view>
  40. </template>
  41. <template v-if="item.peopleConfirmStatus == 1 && item.applyConfirmStatus == 0">
  42. <view class="an" style="color: #f44336" @click.stop="applyOrder(item.id)">进口申报确认</view>
  43. </template>
  44. <template v-if="item.peopleConfirmStatus == 1 && item.applyConfirmStatus == 1 && item.apply == 1 && item.resaleStatus == 0">
  45. <view class="an" style="color: #f44336" @click.stop="resale(item)">订单转售</view>
  46. </template>
  47. <!-- <template v-if="item.peopleConfirmStatus == 0">
  48. <view class="an" style="color: #f44336" v-if="user.userType == 2" @click.stop="confirm(item.id)">取消订单</view>
  49. </template>
  50. <template v-if="item.finishStatus == 3">
  51. <view class="an" style="color: #f44336" v-if="user.userType == 2" @click.stop="del(item.id)">删除订单</view>
  52. </template> -->
  53. </view>
  54. </view>
  55. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  56. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {
  64. tab: [
  65. {
  66. name: '全部',
  67. peopleConfirmStatus: '', //边民确认状态
  68. applyConfirmStatus: '', //进口申报确认状态
  69. apply: '', //订单申报状态
  70. finishStatus: '', //订单完成状态
  71. resaleStatus: '' //订单转售状态
  72. },
  73. {
  74. name: '边民确认',
  75. peopleConfirmStatus: 0,
  76. applyConfirmStatus: 0,
  77. apply: 0,
  78. finishStatus: 0,
  79. resaleStatus: 0
  80. },
  81. {
  82. name: '申报确认',
  83. peopleConfirmStatus: 1,
  84. applyConfirmStatus: 0,
  85. apply: 0,
  86. finishStatus: 0,
  87. resaleStatus: 0
  88. },
  89. {
  90. name: '申报中',
  91. peopleConfirmStatus: 1,
  92. applyConfirmStatus: 1,
  93. apply: 0,
  94. finishStatus: 0,
  95. resaleStatus: 0
  96. },
  97. {
  98. name: '已完成',
  99. peopleConfirmStatus: 1,
  100. applyConfirmStatus: 1,
  101. apply: 1,
  102. finishStatus: 1,
  103. resaleStatus: 0
  104. },
  105. {
  106. name: '已转售',
  107. peopleConfirmStatus: 1,
  108. applyConfirmStatus: 1,
  109. apply: 1,
  110. finishStatus: 1,
  111. resaleStatus: 1
  112. }/* ,
  113. {
  114. name: '已取消',
  115. peopleConfirmStatus: '',
  116. apply: '',
  117. finishStatus: 3,
  118. resaleStatus: ''
  119. } */
  120. ],
  121. param: {
  122. pageNo: 1,
  123. pageSize: 10
  124. },
  125. user:this.getUser(),
  126. list: [],
  127. loadMore: true,
  128. user: this.getUser(),
  129. confirmType: 1,//边民确认类型[1=刷脸,2=指纹]
  130. };
  131. },
  132. onLoad() {
  133. this.getData();
  134. console.log("111111",this.list)
  135. },
  136. methods: {
  137. getData() {
  138. this.http.request({
  139. url: '/level-one-server/app/TbOrder/getList',
  140. loading: 'false',
  141. data: this.param,
  142. success: res => {
  143. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  144. if (res.data.data) {
  145. this.list.push(...res.data.data);
  146. }
  147. /* this.list.map(item => {
  148. if (item.cancelPeople == 1) {
  149. item.enterpriseConfirm = 3;
  150. }
  151. }); */
  152. }
  153. });
  154. },
  155. // 点击tab切换
  156. click(e) {
  157. console.log(e);
  158. this.param.peopleConfirmStatus = e.peopleConfirmStatus;
  159. this.param.applyConfirmStatus = e.applyConfirmStatus;
  160. this.param.apply = e.apply;
  161. this.param.finishStatus = e.finishStatus;
  162. this.param.resaleStatus = e.resaleStatus;
  163. this.refresh();
  164. },
  165. detail(item) {
  166. uni.navigateTo({url: '/pages/market/one/leader/detail?id=' + item.id});
  167. },
  168. resale(item) {
  169. uni.navigateTo({url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)});
  170. },
  171. // 刷新数据
  172. refresh() {
  173. this.loadMore = true;
  174. this.param.pageNo = 1;
  175. this.list = [];
  176. this.getData();
  177. },
  178. //边民确认订单
  179. confirmOrder(id) {
  180. this.http.request({
  181. url: '/level-one-server/app/TbOrder/confirmOrder',
  182. data: { orderId: id , confirmType: this.confirmType},
  183. success: resp => {
  184. uni.showToast({ title: '操作成功' });
  185. this.refresh();
  186. }
  187. });
  188. },
  189. //边民进口申报确认
  190. applyOrder(id) {
  191. this.http.request({
  192. url: '/level-one-server/app/TbOrder/applyOrder',
  193. data: { orderId: id },
  194. success: resp => {
  195. uni.showToast({ title: '操作成功' });
  196. this.refresh();
  197. }
  198. });
  199. },
  200. // 取消订单
  201. confirm(id) {
  202. uni.showModal({
  203. title: '提示',
  204. content: '是否确认取消订单?',
  205. success: res => {
  206. if (res.confirm) {
  207. this.http.request({
  208. url: '/level-one-server/app/TbOrder/cancelOrder',
  209. data: { orderId: id },
  210. success: resp => {
  211. uni.showToast({ title: '操作成功' });
  212. this.refresh();
  213. }
  214. });
  215. }
  216. }
  217. });
  218. },
  219. // 删除订单
  220. del(id) {
  221. uni.showModal({
  222. title: '提示',
  223. content: '确认删除该订单?',
  224. success: res => {
  225. if (res.confirm) {
  226. this.http.request({
  227. url: '/level-one-server/app/TbOrder/delete',
  228. data: { id: id },
  229. success: resp => {
  230. uni.showToast({ title: '操作成功' });
  231. this.refresh();
  232. }
  233. });
  234. }
  235. }
  236. });
  237. }
  238. },
  239. //下拉刷新
  240. onPullDownRefresh() {
  241. setTimeout(() => {
  242. this.refresh();
  243. uni.stopPullDownRefresh();
  244. }, 1000);
  245. },
  246. //上拉加载
  247. onReachBottom() {
  248. if (this.loadMore) {
  249. this.param.pageNo++;
  250. this.getData();
  251. }
  252. }
  253. };
  254. </script>
  255. <style lang="scss">
  256. page {
  257. background-color: $pg;
  258. }
  259. .state{
  260. margin-right: -70px;
  261. }
  262. </style>