order.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. confirmType: 1,//边民确认类型[1=刷脸,2=指纹]
  129. id: '',
  130. flag: '',
  131. };
  132. },
  133. onLoad() {
  134. this.getData();
  135. uni.$on('face', res => {
  136. if(this.flag == 1) {
  137. this.http.request({
  138. url: '/level-one-server/app/TbOrder/confirmOrder',
  139. data: { orderId: this.id , confirmType: this.confirmType},
  140. success: resp => {
  141. uni.showToast({ title: '订单确认成功' });
  142. this.refresh();
  143. }
  144. });
  145. } else if(this.flag == 2) {
  146. this.http.request({
  147. url: '/level-one-server/app/TbOrder/applyOrder',
  148. data: { orderId: this.id },
  149. success: resp => {
  150. uni.showToast({ title: '进口申报确认成功' });
  151. this.refresh();
  152. }
  153. });
  154. }
  155. })
  156. },
  157. methods: {
  158. getData() {
  159. this.http.request({
  160. url: '/level-one-server/app/TbOrder/getList',
  161. loading: 'false',
  162. data: this.param,
  163. success: res => {
  164. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  165. if (res.data.data) {
  166. this.list.push(...res.data.data);
  167. }
  168. /* this.list.map(item => {
  169. if (item.cancelPeople == 1) {
  170. item.enterpriseConfirm = 3;
  171. }
  172. }); */
  173. }
  174. });
  175. },
  176. // 点击tab切换
  177. click(e) {
  178. console.log(e);
  179. this.param.peopleConfirmStatus = e.peopleConfirmStatus;
  180. this.param.applyConfirmStatus = e.applyConfirmStatus;
  181. this.param.apply = e.apply;
  182. this.param.finishStatus = e.finishStatus;
  183. this.param.resaleStatus = e.resaleStatus;
  184. this.refresh();
  185. },
  186. detail(item) {
  187. uni.navigateTo({url: '/pages/market/one/leader/detail?id=' + item.id});
  188. },
  189. resale(item) {
  190. uni.navigateTo({url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)});
  191. },
  192. // 刷新数据
  193. refresh() {
  194. this.loadMore = true;
  195. this.param.pageNo = 1;
  196. this.list = [];
  197. this.getData();
  198. },
  199. //边民确认订单
  200. confirmOrder(id) {
  201. this.id = id;
  202. this.flag = 1;
  203. uni.navigateTo({url: '/pages/authentication/face'});
  204. },
  205. //边民进口申报确认
  206. applyOrder(id) {
  207. this.id = id;
  208. this.flag = 2;
  209. uni.navigateTo({url: '/pages/authentication/face'});
  210. },
  211. // 取消订单
  212. confirm(id) {
  213. uni.showModal({
  214. title: '提示',
  215. content: '是否确认取消订单?',
  216. success: res => {
  217. if (res.confirm) {
  218. this.http.request({
  219. url: '/level-one-server/app/TbOrder/cancelOrder',
  220. data: { orderId: id },
  221. success: resp => {
  222. uni.showToast({ title: '操作成功' });
  223. this.refresh();
  224. }
  225. });
  226. }
  227. }
  228. });
  229. },
  230. // 删除订单
  231. del(id) {
  232. uni.showModal({
  233. title: '提示',
  234. content: '确认删除该订单?',
  235. success: res => {
  236. if (res.confirm) {
  237. this.http.request({
  238. url: '/level-one-server/app/TbOrder/delete',
  239. data: { id: id },
  240. success: resp => {
  241. uni.showToast({ title: '操作成功' });
  242. this.refresh();
  243. }
  244. });
  245. }
  246. }
  247. });
  248. }
  249. },
  250. //下拉刷新
  251. onPullDownRefresh() {
  252. setTimeout(() => {
  253. this.refresh();
  254. uni.stopPullDownRefresh();
  255. }, 1000);
  256. },
  257. //上拉加载
  258. onReachBottom() {
  259. if (this.loadMore) {
  260. this.param.pageNo++;
  261. this.getData();
  262. }
  263. }
  264. };
  265. </script>
  266. <style lang="scss">
  267. page {
  268. background-color: $pg;
  269. }
  270. .state{
  271. margin-right: -70px;
  272. }
  273. </style>