totalClient.vue 5.1 KB

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