order.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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" style="width: 97%;font-size: 17px;">
  9. <span v-if="item.purchaserId === null || item.purchaserId === '' || item.purchaserId === undefined">车牌号 {{ item.veNo }}</span>
  10. <span v-else>采购商 {{ item.purchaserName }}</span>
  11. <span>
  12. <view class="state" v-if="item.purchaserId === null || item.purchaserId === '' || item.purchaserId === undefined"><text class="icon">&#xe830;</text>待下单</view>
  13. <view class="state" v-else><text class="icon" style="color: #13ce66">&#xe830;</text>已下单</view>
  14. </span>
  15. <span class="state" style="color: #4581fb" v-if="item.isPay == 1 && item.payTax == 0">已支付</span>
  16. <span class="state" style="color: #13ce66" v-if="item.payTax == 1 && item.orderFinish == 1">已完成</span>
  17. </view>
  18. <view class="con">
  19. <view class="productName omit">{{ item.goodsName }}</view>
  20. <view class="desc omit">
  21. <text>{{ item.tradeAreaName }}</text>
  22. </view>
  23. <view class="price">¥ {{ item.resalePrice }}</view>
  24. </view>
  25. <view class="clear"></view>
  26. <view class="op">
  27. <view class="date">{{ item.createTime }}</view>
  28. <view class="an" style="color: #4581fb" @click.stop="payTax(item)" v-if="item.isPay == 1 && item.payTax == 0">去缴费税</view>
  29. </view>
  30. </view>
  31. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  32. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. tab: [
  41. { name: '全部', isPay: '', payTax: '', orderFinish: ''},
  42. { name: '已支付', isPay: 1, payTax: 0, orderFinish: 0},
  43. { name: '已完成', isPay: 1, payTax: 1, orderFinish: 1}
  44. ],
  45. param: { pageNo: 1, pageSize: 10 },
  46. list: [],
  47. loadMore: true
  48. };
  49. },
  50. onLoad() {
  51. this.getData();
  52. uni.$on('goodsHandle', res => {
  53. this.refresh();
  54. });
  55. },
  56. methods: {
  57. getData() {
  58. this.http.request({
  59. url: '/level-two-server/app/TbOrders/getLeaderOrderList',
  60. loading: 'false',
  61. data: this.param,
  62. success: res => {
  63. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  64. this.list.push(...res.data.data);
  65. console.log("purchaserId="+this.list[0].purchaserId)
  66. }
  67. });
  68. },
  69. //点击tab切换
  70. click(e) {
  71. this.param.isPay = e.isPay;
  72. this.param.payTax = e.payTax;
  73. this.param.orderFinish = e.orderFinish;
  74. this.refresh();
  75. },
  76. payTax(item) {
  77. uni.navigateTo({ url: '/pages/market/two/leader/feeDetail?resalePrice=' + item.resalePrice +'&id=' + item.id});
  78. },
  79. detail(item) {
  80. uni.navigateTo({ url: '/pages/market/two/leader/detail?id=' + item.id });
  81. },
  82. //刷新数据
  83. refresh() {
  84. this.loadMore = true;
  85. this.param.pageNo = 1;
  86. this.list = [];
  87. this.getData();
  88. }
  89. },
  90. //下拉刷新
  91. onPullDownRefresh() {
  92. setTimeout(() => {
  93. this.refresh();
  94. uni.stopPullDownRefresh();
  95. }, 1000);
  96. },
  97. //上拉加载
  98. onReachBottom() {
  99. if (this.loadMore) {
  100. this.param.pageNo++;
  101. this.getData();
  102. }
  103. },
  104. onNavigationBarButtonTap() {
  105. uni.navigateTo({ url: '/pages/goodsManage/oneMarket/editGoods' });
  106. }
  107. };
  108. </script>
  109. <style lang="scss">
  110. page {
  111. background-color: $pg;
  112. }
  113. </style>