list copy.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>客户姓名:{{item.nickName}}</view>
  7. <view>客户电话:{{item.mobile}}</view>
  8. <view>加入时间:{{item.serviceTime | dateToYYmmdd}}</view>
  9. </view>
  10. </block>
  11. </view>
  12. <no-data v-if="!customerList.length" :showText="'暂无客户'"></no-data>
  13. <loading-text v-if="customerList.length" :loading="loading" :noMore="noMore" ></loading-text>
  14. </view>
  15. </template>
  16. <script>
  17. import {mapState} from 'vuex';
  18. export default {
  19. data() {
  20. return {
  21. customerList: [],
  22. pageNum: 1,
  23. pageSize: 10,
  24. noMore: false,
  25. loading: false,
  26. }
  27. },
  28. computed:{
  29. ...mapState(['userInfo', 'isLogin', 'userId'])
  30. },
  31. onLoad() {
  32. this.getCustomerList();
  33. },
  34. // 下拉刷新
  35. onPullDownRefresh() {
  36. this.pageNum = 1;
  37. this.getCustomerList();
  38. },
  39. // 上拉加载
  40. onReachBottom() {
  41. this.getCustomerList(1);
  42. },
  43. methods: {
  44. // 获取商品列表
  45. getCustomerList(loadMore) {
  46. if(this.noMore && loadMore)return;
  47. this.noMore = false
  48. if(!loadMore){
  49. this.pageNum = 1;
  50. }else{
  51. this.loading = true;
  52. }
  53. this.$axios({
  54. url: '/user/customer',
  55. method: 'get',
  56. params: {
  57. pageNum: this.pageNum,
  58. pageSize: this.pageSize,
  59. userId: this.userId,
  60. },
  61. isLoading: !loadMore
  62. }).then(res => {
  63. let _list = res.data.records;
  64. let pageTotal = res.data.pages;
  65. if(this.pageNum >= pageTotal){
  66. this.noMore = true;
  67. }
  68. if (_list.length) {
  69. this.pageNum += 1
  70. }
  71. if (loadMore) {
  72. this.customerList = this.customerList.concat(_list);
  73. this.loading = false;
  74. } else {
  75. this.customerList = _list;
  76. }
  77. uni.stopPullDownRefresh();
  78. })
  79. },
  80. }
  81. }
  82. </script>
  83. <style lang="scss">
  84. .app-container {
  85. background: #F4F2F2;
  86. box-sizing: border-box;
  87. }
  88. .list-container {
  89. padding: 20rpx;
  90. .item {
  91. background: #FFFFFF;
  92. margin-bottom: 20rpx;
  93. border-radius: 20rpx;
  94. padding: 20rpx;
  95. font-size: 28rpx;
  96. height: 180rpx;
  97. display: flex;
  98. flex-direction: column;
  99. box-sizing: border-box;
  100. justify-content: space-between;
  101. }
  102. }
  103. </style>