totalPersonnel.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view>
  3. <global-loading />
  4. <view class="totalClient-topBackImg flex-items flex-column">
  5. <view class="topBg">
  6. <view class="font-color-8A734A mar-top-30 fs60">{{ SubordinateSalesData.total }}</view>
  7. <view class="font-color-C5AA7B">累计分销员(人)</view>
  8. </view>
  9. </view>
  10. <view v-if="SubordinateSalesData.total > 0" class="content directAwardInfo">
  11. <view class="directAwardTit fs32 font-color-333">我的客户信息</view>
  12. <view v-for="(item, index) in SubordinateSalesDatalist" :key="index" class="flex-center clientList-box mar-top-30">
  13. <view class="directAward-box font-color-656 fs26" @click="arrowTypeChange(index)">
  14. <view class="directAward-icon flex-row-plus flex-items flex-sp-between">
  15. <view>
  16. <label class="orderId-box name font-color-333 fs28">分销员昵称:{{ item.distributorName }}</label>
  17. <view class="flex-row-plus flex-items mar-top-30 flex-sp-between">
  18. <label class="orderId-box font-color-999">手机号:{{ item.distributorPhone }}</label>
  19. </view>
  20. </view>
  21. <image v-if="item.ifOpen == false" class="arrow-down" src="../../static/images/origin/arrowDownIcon.png">
  22. </image>
  23. <image v-if="item.ifOpen == true" class="arrow-down" src="../../static/images/origin/arrowUpIcon.png"></image>
  24. </view>
  25. <view v-if="item.ifOpen == true">
  26. <view class="flex-row-plus flex-itdistributionOrderems mar-top-30 flex-sp-between">
  27. <label class="orderId-box font-color-999">累计下单数:{{ item.orders }}</label>
  28. <label class="commission-box mar-left-70 font-color-999">累计分佣:¥{{ item.price }}</label>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view v-else class="emptyCart-box flex-items-plus flex-column">
  35. <image class="emptyCart-img" src="../../static/images/origin/bgnull.png"></image>
  36. <label class="font-color-999 fs26 mar-top-30 font-color-999">这里空空如也~</label>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. const NET = require('../../utils/request')
  42. const API = require('../../config/api')
  43. export default {
  44. data() {
  45. return {
  46. item: {},
  47. SubordinateSalesQuery: {
  48. model: {
  49. tenantCode: ''
  50. }
  51. },
  52. SubordinateSalesData: [],
  53. shopId: 0,
  54. distributorId: 0,
  55. page: 1, // 当前页
  56. pageSize: 10, // 每页记录数
  57. loadingType: 0,
  58. SubordinateSalesDatalist: []
  59. }
  60. },
  61. onLoad(options) {
  62. this.shopId = options.shopId
  63. this.distributorId = options.distributorId
  64. this.getSubordinateSales()
  65. },
  66. onReachBottom() {
  67. if (this.loadingType == 1) {
  68. uni.stopPullDownRefresh()
  69. } else {
  70. this.pageSize = this.pageSize + 10
  71. this.getSubordinateSales()
  72. }
  73. },
  74. methods: {
  75. getSubordinateSales() {
  76. // uni.showLoading({
  77. // mask: true,
  78. // title: '加载中...'
  79. // })
  80. NET.request(API.FindSubordinateSalesList, {
  81. shopId: this.shopId,
  82. distributorId: this.distributorId,
  83. page: this.page,
  84. pageSize: this.pageSize
  85. }, 'GET').then((res) => {
  86. uni.hideLoading()
  87. if (res.data.list.length == 0) {
  88. this.loadingType = 1
  89. }
  90. this.SubordinateSalesDatalist = res.data.list
  91. this.SubordinateSalesData = res.data
  92. })
  93. .catch((res) => {
  94. uni.hideLoading()
  95. })
  96. },
  97. arrowTypeChange(arrowTypeId) {
  98. this.SubordinateSalesData.list[arrowTypeId].ifOpen = this.SubordinateSalesData.list[arrowTypeId].ifOpen == false
  99. }
  100. }
  101. }
  102. </script>
  103. <style lang="scss">
  104. page {
  105. background: #333333;
  106. }
  107. .emptyCart-box {
  108. margin-top: 300upx;
  109. .emptyCart-img {
  110. width: 270upx;
  111. height: 270upx;
  112. }
  113. }
  114. .totalClient-topBackImg {
  115. width: 100%;
  116. padding: 0 20rpx;
  117. .topBg {
  118. width: 100%;
  119. height: 196upx;
  120. background: url("../../static/images/origin/totalPersonnelTopBackImg.png") no-repeat;
  121. margin-top: 50rpx;
  122. text-align: center;
  123. }
  124. .content {
  125. width: 690upx;
  126. background-color: #FFFFFF;
  127. .totalClient-left {
  128. width: 170upx;
  129. height: 20upx;
  130. }
  131. .massage-text {
  132. padding: 0 20upx;
  133. }
  134. }
  135. }
  136. .top {
  137. height: 50upx;
  138. background-image: linear-gradient(#FF8E14, #FFFFFF);
  139. }
  140. .directAwardInfo {
  141. width: 100%;
  142. height: 100vh;
  143. background: #F8F8F8;
  144. padding: 0 20rpx;
  145. .directAwardTit {
  146. height: 88rpx;
  147. line-height: 88rpx;
  148. font-size: 32rpx;
  149. color: #333333;
  150. text-align: center;
  151. padding-bottom: 20rpx;
  152. border-bottom: 2rpx solid #EEEEEE;
  153. font-weight: bold;
  154. }
  155. }
  156. .uni-collapse-cell[data-v-8f47561c] {
  157. -webkit-box-orient: vertical;
  158. -webkit-box-direction: normal;
  159. -webkit-flex-direction: column;
  160. flex-direction: column;
  161. border-color: #c8c7cc;
  162. border-bottom-width: 1px;
  163. border-bottom-style: none;
  164. }
  165. .directAward-box {
  166. width: 100%;
  167. display: flex;
  168. justify-content: flex-start;
  169. flex-direction: column;
  170. background-color: #FFFFFF;
  171. padding: 50upx 20upx;
  172. .orderId-box {
  173. width: 320upx;
  174. display: flex;
  175. justify-content: flex-start;
  176. flex-direction: row;
  177. }
  178. label.name {
  179. font-weight: bold;
  180. }
  181. .commission-box {
  182. text-align: right;
  183. }
  184. .arrow-down {
  185. width: 24upx;
  186. height: 24upx;
  187. }
  188. .upBox {
  189. border-top: 1upx solid #EDEDED;
  190. margin-top: 30upx;
  191. }
  192. }
  193. </style>