invitePeople.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <view class="box">
  3. <!-- 明细 -->
  4. <view class="mingxiBg" v-if="arr.length > 0">
  5. <view v-for="(item,index) in arr" :key="index">
  6. <view class="itemBg">
  7. <image :src='item.headUrl' mode="" style="width: 72rpx; height: 72rpx; border-radius: 36rpx;"></image>
  8. <view class="nickName" v-if="item.nickName">{{item.nickName}}</view>
  9. <view class="time">{{item.createTime.slice(0,item.createTime.length-8)}}</view>
  10. </view>
  11. </view>
  12. </view>
  13. <!-- 上拉 加载更多 -->
  14. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  15. <!-- 无数据空白页 -->
  16. <nodata v-if="arr.length==0"></nodata>
  17. </view>
  18. </template>
  19. <script>
  20. import nodata from '../../components/nodata/nodata.vue'
  21. export default {
  22. components: {
  23. nodata,
  24. },
  25. data() {
  26. return {
  27. arr: [],
  28. page: 1,
  29. noMoreShow: false,
  30. }
  31. },
  32. onShow() {
  33. this.page = 1;
  34. this.getItemData();
  35. },
  36. methods: {
  37. getItemData() {
  38. uni.showLoading({
  39. title: '加载中'
  40. })
  41. let url = 'worldKeepCar/worldDistribution/listSubMemberPage',
  42. params = {
  43. page:this.page,
  44. limit:10,
  45. }
  46. this.$http(url, params, 'GET').then(res => {
  47. uni.hideLoading();
  48. var list = res.data.Items
  49. // 处理 undefined和null转为空白字符串
  50. list.forEach((item, index) => {
  51. for (const key in item) {
  52. item[key] = this.$praseStrEmpty(item[key])
  53. }
  54. })
  55. if (this.page == 1) {
  56. this.arr = list
  57. } else {
  58. this.arr = this.arr.concat(list)
  59. }
  60. if (list.length < 10) {
  61. this.noMoreShow = true
  62. } else {
  63. this.noMoreShow = false
  64. }
  65. })
  66. },
  67. },
  68. // 下拉刷新 上拉加载更多
  69. onPullDownRefresh() {
  70. this.page = 1;
  71. this.getItemData()
  72. setTimeout(function() {
  73. uni.stopPullDownRefresh();
  74. }, 1000);
  75. },
  76. onReachBottom() {
  77. this.page++;
  78. this.getItemData()
  79. },
  80. }
  81. </script>
  82. <style>
  83. .box {
  84. min-height: 100vh;
  85. background: #F4F5F7;
  86. padding-top: 20rpx;
  87. }
  88. .mingxiBg{
  89. margin: 0rpx 24rpx;
  90. background-color: #FFFFFF;
  91. border-radius: 10rpx;
  92. padding: 20rpx;
  93. }
  94. .itemBg {
  95. height: 98rpx;
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. .nickName {
  101. font-size: 30rpx;
  102. color: #3C3C3C;
  103. flex-grow: 1;
  104. margin: 0 15rpx;
  105. }
  106. .time {
  107. font-size: 30rpx;
  108. color: #999999;
  109. margin: 0 15rpx;
  110. }
  111. .jine {
  112. font-size: 32rpx;
  113. color: #FF4F00;
  114. font-weight: bold;
  115. margin: 0 15rpx;
  116. }
  117. .noMore {
  118. text-align: center;
  119. line-height: 50rpx;
  120. color: #999999;
  121. font-size: 28rpx;
  122. }
  123. </style>