dy.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <view class="dy">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="bigBox" v-for=" i in applyUserlist">
  5. <view class="imgblk">
  6. <image class="img" :src="i.avatar" mode="aspectFill"></image>
  7. </view>
  8. <view class="info">
  9. <view class="uname">
  10. <view class="nameTxt">
  11. {{i.username}}
  12. </view>
  13. <view class="sch">{{i.create_at}}</view>
  14. </view>
  15. <view class="sch1">深圳城市××大学</view>
  16. </view>
  17. </view>
  18. <view class="loading">
  19. <view v-if="newsLoading==1">数据加载中...</view>
  20. <view v-if="newsLoading==2">没有更多了~~</view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. navBarData: {
  29. title: '新增订阅',
  30. btn: 1
  31. },
  32. // 报名列表
  33. applyUserlist:[],
  34. // 活动id
  35. acId:'',
  36. // 触底加载动画提示
  37. newsLoading: 0, //0默认值 1加载中 2没有更多了
  38. currentPage: 1,
  39. // items:[ //1回粉 2关注 3相互关注
  40. // {tit:'hf',btn:1},
  41. // {tit:'hf2',btn:1},
  42. // {tit:'gz',btn:2},
  43. // {tit:'hx',btn:3},
  44. // ]
  45. };
  46. },
  47. methods:{
  48. // 获取报名用户
  49. getUsers(){
  50. let data = {
  51. oid: this.$store.state.user.openid, //用户id
  52. aid:this.acId,
  53. type: 2,
  54. page: this.currentPage, //下拉获取更多的备用字段
  55. lim: 20 //一次获取多少数据
  56. }
  57. this.$request('/selectApplyUser', 'POST', data).then(res => {
  58. console.log('获取报名用户列表', res[0]);
  59. if (!res[0].length) {
  60. this.newsLoading = 2
  61. } else {
  62. this.newsLoading = 0
  63. }
  64. this.applyUserlist=[...this.applyUserlist,...res[0]]
  65. })
  66. }
  67. },
  68. // 触底加载更多
  69. onReachBottom() {
  70. if (this.newsLoading == 2) {
  71. return
  72. }
  73. this.newsLoading = 1
  74. this.currentPage++
  75. setTimeout(this.getUsers(),1500)
  76. },
  77. onLoad(e) {
  78. console.log('接受参数',e);
  79. this.acId=e.acId
  80. this.getUsers()
  81. }
  82. };
  83. </script>
  84. <style lang="scss" scoped>
  85. .dy{
  86. }
  87. .bigBox{
  88. background-color: white;
  89. width: 750rpx;
  90. height: 136rpx;
  91. padding: 0rpx 30rpx;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. .imgblk{
  96. height: 80rpx;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. // background-color: #888;
  101. .img{
  102. width: 72rpx;
  103. height: 72rpx;
  104. border-radius: 50%;
  105. }
  106. }
  107. .info{
  108. flex: 1;
  109. display: flex;
  110. flex-direction: column;
  111. height: 80rpx;
  112. justify-content: space-between;
  113. margin-left: 20rpx;
  114. // background-color: rebeccapurple;
  115. .uname{
  116. display: flex;
  117. justify-content: space-between;
  118. .nameTxt{
  119. font-size: 28rpx;
  120. color: rgba(0, 0, 0, 0.8);
  121. // line-height: 50%;
  122. }
  123. .sch{
  124. font-size: 24rpx;
  125. color: rgba(0, 0, 0, 0.6);
  126. }
  127. }
  128. .sch1{
  129. // flex: 1;
  130. font-size: 24rpx;
  131. color: rgba(0, 0, 0, 0.6);
  132. }
  133. }
  134. }
  135. .loading{
  136. height: 50rpx;
  137. text-align: center;
  138. padding-top: 20rpx;
  139. padding-bottom: 100rpx;
  140. font-size: 26rpx;
  141. color:#888;
  142. line-height: 2em;
  143. }
  144. </style>