apply.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <view>
  3. <view class="goodsList">
  4. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  5. <view class="title">{{ item.enterpriseName }}
  6. <view class="state" v-if="item.peopleConfirmStatus == 0">
  7. <text class="icon">&#xe830;</text>
  8. <text>未确认</text>
  9. </view>
  10. <view class="state" v-if="item.peopleConfirmStatus == 1 && item.apply == 0">
  11. <text class="icon" style="color: #13ce66">&#xe830;</text>
  12. <text>已确认</text>
  13. </view>
  14. <view class="state" v-if="item.resaleStatus == 1">
  15. <text class="icon" style="color: #13ce66">&#xe830;</text>
  16. <text>已转售</text>
  17. </view>
  18. <view class="state" v-if="item.finishStatus == 3">
  19. <text class="icon" style="color: #f44336">&#xe622;</text>
  20. <text>已取消</text>
  21. </view>
  22. </view>
  23. <image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  24. <view class="con">
  25. <view class="productName omit">{{ item.goodsNames }}</view>
  26. <view class="desc omit">
  27. <text>重量 {{ item.totalWeight }}</text>
  28. <text>{{ item.tradeAreaName }}</text>
  29. </view>
  30. <view class="price">¥ {{ item.totalPrice }}</view>
  31. </view>
  32. <view class="clear"></view>
  33. <view class="op">
  34. <view class="date">{{ item.createTime }}</view>
  35. <template v-if="item.peopleConfirmStatus == 1 && item.applyConfirmStatus == 0">
  36. <view class="an" style="color: #f44336" @click.stop="applyOrder(item.id)">进口申报确认</view>
  37. </template>
  38. </view>
  39. </view>
  40. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  41. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. param: {
  50. pageNo: 1,
  51. pageSize: 10
  52. },
  53. user:this.getUser(),
  54. list: [],
  55. loadMore: true,
  56. confirmType: 1,//边民确认类型[1=刷脸,2=指纹]
  57. id: '',
  58. flag: '',
  59. };
  60. },
  61. onLoad() {
  62. this.getData();
  63. uni.$on('face', res => {
  64. if(this.flag == 2) {
  65. this.http.request({
  66. url: '/level-one-server/app/TbOrder/applyOrder',
  67. data: { orderId: this.id },
  68. success: resp => {
  69. uni.showToast({ title: '进口申报确认成功' });
  70. this.refresh();
  71. }
  72. });
  73. }
  74. })
  75. },
  76. methods: {
  77. getData() {
  78. this.http.request({
  79. url: '/level-one-server/app/TbOrder/getList',
  80. loading: 'false',
  81. data: this.param,
  82. success: res => {
  83. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  84. if (res.data.data) {
  85. this.list.push(...res.data.data);
  86. }
  87. }
  88. });
  89. },
  90. detail(item) {
  91. uni.navigateTo({url: '/pages/market/one/leader/detail?id=' + item.id});
  92. },
  93. resale(item) {
  94. uni.navigateTo({url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)});
  95. },
  96. // 刷新数据
  97. refresh() {
  98. this.loadMore = true;
  99. this.param.pageNo = 1;
  100. this.list = [];
  101. this.getData();
  102. },
  103. //边民进口申报确认
  104. applyOrder(id) {
  105. this.id = id;
  106. this.flag = 2;
  107. uni.navigateTo({url: '/pages/authentication/face'});
  108. },
  109. },
  110. //下拉刷新
  111. onPullDownRefresh() {
  112. setTimeout(() => {
  113. this.refresh();
  114. uni.stopPullDownRefresh();
  115. }, 1000);
  116. },
  117. //上拉加载
  118. onReachBottom() {
  119. if (this.loadMore) {
  120. this.param.pageNo++;
  121. this.getData();
  122. }
  123. }
  124. };
  125. </script>
  126. <style lang="scss">
  127. page {
  128. background-color: $pg;
  129. }
  130. .state{
  131. margin-right: -70px;
  132. }
  133. </style>