list.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="app-container">
  3. <view class="list-container">
  4. <block v-for="(item, index) in customerList" :key='index'>
  5. <view class="item">
  6. <view class="row">客户姓名:{{item.nickName}}</view>
  7. <view class="row">客户电话:{{item.mobile}}</view>
  8. <view class="row">加入时间:{{item.serviceTime ? (item.serviceTime | dateToYYmmdd) : ''}}</view>
  9. <view class="row">最近访问时间:{{item.lastAccessTime || ''}}</view>
  10. <view class="title">客户标签</view>
  11. <view class="tags" @tap="toChooseTag(item.unionId)">
  12. <view class="left" v-if="item.allTags && item.allTags.length > 0">
  13. <block v-for="(it, idx) in item.allTags" :key='idx'>
  14. <text>{{it.tagName}}</text>
  15. </block>
  16. </view>
  17. <view class="no" v-else>添加标签</view>
  18. <image src="@/static/icon/right.png"></image>
  19. </view>
  20. </view>
  21. </block>
  22. </view>
  23. <no-data v-if="!customerList.length" :showText="'暂无客户'"></no-data>
  24. </view>
  25. </template>
  26. <script>
  27. import {mapState} from 'vuex';
  28. export default {
  29. data() {
  30. return {
  31. customerList: [],
  32. }
  33. },
  34. computed:{
  35. ...mapState(['userInfo', 'isLogin', 'userId'])
  36. },
  37. onLoad() {
  38. this.getCustomerList();
  39. uni.$on('refreshCustomerData',() => {
  40. this.getCustomerList();
  41. })
  42. },
  43. // 下拉刷新
  44. onPullDownRefresh() {
  45. this.getCustomerList();
  46. },
  47. methods: {
  48. // 获取客户列表
  49. getCustomerList() {
  50. this.$axios({
  51. url: '/tag/wx/customer',
  52. method: 'get',
  53. params: {},
  54. }).then(res => {
  55. if(res.data && res.data.length > 0) {
  56. res.data.forEach(item => {
  57. item.allTags = item.tags.concat(item.customtags);
  58. })
  59. }
  60. this.customerList = res.data || [];
  61. uni.stopPullDownRefresh();
  62. })
  63. },
  64. // 去选择标签
  65. toChooseTag(unionId) {
  66. uni.navigateTo({
  67. url: '/pages/mine/customer/tag?unionId=' + unionId
  68. })
  69. },
  70. }
  71. }
  72. </script>
  73. <style lang="scss">
  74. .app-container {
  75. background: #F4F2F2;
  76. box-sizing: border-box;
  77. }
  78. .list-container {
  79. padding: 20rpx;
  80. .item {
  81. background: #FFFFFF;
  82. margin-bottom: 20rpx;
  83. border-radius: 20rpx;
  84. padding: 20rpx;
  85. font-size: 28rpx;
  86. display: flex;
  87. flex-direction: column;
  88. box-sizing: border-box;
  89. .row {
  90. margin-bottom: 10rpx;
  91. }
  92. .title {
  93. margin-top: 10rpx;
  94. }
  95. .tags {
  96. margin-top: 8rpx;
  97. padding: 16rpx 20rpx 6rpx;
  98. border-radius: 10rpx;
  99. background: #F1F1F1;
  100. display: flex;
  101. align-items: center;
  102. justify-content: space-between;
  103. .left {
  104. text {
  105. display: inline-block;
  106. font-size: 24rpx;
  107. padding: 0 16rpx;
  108. height: 48rpx;
  109. line-height: 48rpx;
  110. border-radius: 10rpx;
  111. background: #FFD6BB;
  112. color: #FE781F;
  113. border: 1px solid rgba($color: #FE781F, $alpha: 0.4);
  114. margin-right: 10rpx;
  115. margin-bottom: 10rpx;
  116. &:last-child {
  117. margin-right: 0;
  118. }
  119. }
  120. }
  121. .no {
  122. color: #666666;
  123. margin-bottom: 10rpx;
  124. }
  125. image {
  126. flex-shrink: 0;
  127. width: 14rpx;
  128. height: 28rpx;
  129. margin-left: 10rpx;
  130. margin-bottom: 10rpx;
  131. }
  132. }
  133. }
  134. }
  135. </style>