distributionOrder.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view>
  3. <global-loading />
  4. <view v-if="FindMySalesData.total > 0">
  5. <view v-for="(item, index) in FindMySalesDatalist" :key="index" class="flex-center clientList-box">
  6. <view class="directAward-box font-color-656 fs26">
  7. <view class="directAward-icon flex-row-plus flex-items flex-sp-between" @click="arrowTypeChange(index)">
  8. <view class="flex-column-plus font-color-333 fs30">
  9. <label class="orderId-box">订单号:{{ item.orderId }}</label>
  10. <view class="orderId-box mar-top-20">
  11. 佣金:<label class="font-color-C5AA7B">¥{{ item.commission }}</label>
  12. </view>
  13. </view>
  14. <view>
  15. <image v-if="item.ifOpen == false" class="arrow-down" src="../../static/images/origin/arrowDownIcon.png">
  16. </image>
  17. <image v-if="item.ifOpen == true" class="arrow-down" src="../../static/images/origin/arrowUpIcon.png">
  18. </image>
  19. </view>
  20. </view>
  21. <view v-if="item.ifOpen == true" class="upBox">
  22. <view class="flex-row-plus flex-items mar-top-30 flex-sp-between">
  23. <label class="orderId-box font-color-999 fs26">商品数:{{ item.products }}</label>
  24. <label class="orderId-box font-color-999 fs26">实付金额:¥{{ item.price }}</label>
  25. </view>
  26. <view class="flex-row-plus flex-items mar-top-30 flex-sp-between">
  27. <label class="orderId-box font-color-999 fs26">下单人:{{ item.customerName }}</label>
  28. <label class="commission-box mar-left-70 font-color-999 fs26">
  29. 状态:<text
  30. class="state"
  31. :class="{ current: item.state == 0 }"
  32. >
  33. {{ item.state === 0 ? '未结算' : '已结算' }}
  34. </text>
  35. </label>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <view v-else class="emptyCart-box flex-items-plus flex-column">
  42. <image class="emptyCart-img" src="../../static/images/origin/collectEmpty.png"></image>
  43. <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. const NET = require('../../utils/request')
  49. const API = require('../../config/api')
  50. export default {
  51. data() {
  52. return {
  53. shopId: 0,
  54. distributorId: 0,
  55. page: 1,
  56. pageSize: 20,
  57. FindMySalesData: [],
  58. FindMySalesDatalist: []
  59. }
  60. },
  61. onLoad(options) {
  62. this.shopId = options.shopId
  63. this.distributorId = options.distributorId
  64. this.getSalesOrderPage()
  65. },
  66. onReachBottom() {
  67. if (this.loadingType == 1) {
  68. uni.stopPullDownRefresh()
  69. } else {
  70. this.page = this.page + 1
  71. this.getSalesOrderPage()
  72. }
  73. },
  74. methods: {
  75. getSalesOrderPage() {
  76. // uni.showLoading({
  77. // title: '加载中...'
  78. // })
  79. NET.request(API.FindMySalesPage, {
  80. shopId: this.shopId,
  81. distributorId: this.distributorId,
  82. page: this.page,
  83. pageSize: this.pageSize
  84. }, 'GET').then((res) => {
  85. uni.hideLoading()
  86. if (res.data.list.length == 0) {
  87. this.loadingType = 1
  88. this.page = this.page
  89. }
  90. this.FindMySalesDatalist = this.FindMySalesDatalist.concat(res.data.list)
  91. this.FindMySalesData = res.data
  92. })
  93. .catch((res) => {
  94. uni.hideLoading()
  95. })
  96. },
  97. arrowTypeChange(arrowTypeId) {
  98. this.FindMySalesDatalist[arrowTypeId].ifOpen = this.FindMySalesDatalist[arrowTypeId].ifOpen != true
  99. }
  100. }
  101. }
  102. </script>
  103. <style lang="scss">
  104. page {
  105. background: #F8F8F8;
  106. }
  107. .emptyCart-box {
  108. margin-top: 70upx;
  109. .emptyCart-img {
  110. margin-top: 30%;
  111. width: 198rpx;
  112. height: 183rpx;
  113. }
  114. }
  115. .directAward-box {
  116. width: 95%;
  117. display: flex;
  118. justify-content: flex-start;
  119. flex-direction: column;
  120. background-color: #FFFFFF;
  121. padding: 40upx 20upx;
  122. margin-top: 30upx;
  123. .orderId-box {
  124. width: 320upx;
  125. }
  126. .commission-box {
  127. width: 340upx;
  128. }
  129. .state {
  130. color: #16BB89;
  131. }
  132. .current {
  133. color: #C83732 !important;
  134. }
  135. .arrow-down {
  136. width: 24upx;
  137. height: 24upx;
  138. }
  139. .upBox {
  140. border-top: 1upx solid #EDEDED;
  141. margin-top: 30upx;
  142. }
  143. }
  144. </style>