guanzhu-list.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <view class="content">
  3. <u-cell-group :border="false" v-if="list.length > 0">
  4. <u-cell size="large" v-for="(item,index) in list" :key="index">
  5. <view slot="title" class="u-slot-title hflex acenter">
  6. <image :src="item.avatar" mode="aspectFill" @click="touser(item)"></image>
  7. <view class="img-right vflex jbetween">
  8. <text>{{item.username}}</text>
  9. <text v-if="item.introduction">{{item.introduction}}</text>
  10. </view>
  11. </view>
  12. <view slot="value" class="u-slot-value" v-if="type == '1'">
  13. <view class="btn" @click="follow(item)">已关注</view>
  14. </view>
  15. <view slot="value" class="u-slot-value" v-if="type == '2'">
  16. <view class="btn" v-if="item.is_follow">互相关注</view>
  17. <view class="add hflex acenter jcenter" v-else @click="follow(item)">
  18. <u-icon name="plus" color="#00B0B0" size="12"></u-icon>
  19. <text>关注</text>
  20. </view>
  21. </view>
  22. </u-cell>
  23. </u-cell-group>
  24. <view class="hflex acenter jcenter " style="height: 100vh;" v-else>
  25. <u-empty mode="data"></u-empty>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import $api from '@/static/js/api.js'
  31. export default {
  32. data() {
  33. return {
  34. type: '',
  35. list: [],
  36. userid: '',
  37. page: 1,
  38. last_page: 1
  39. }
  40. },
  41. onLoad(option) {
  42. this.userid = uni.getStorageSync('userid')
  43. this.type = option.type
  44. if (this.type == '2') {
  45. uni.setNavigationBarTitle({
  46. title: '被关注'
  47. })
  48. }
  49. this.getlist()
  50. },
  51. onReachBottom() {
  52. if (this.page < this.last_page) {
  53. this.page++
  54. this.getlist()
  55. } else {
  56. uni.$u.toast('已经到底了')
  57. return
  58. }
  59. },
  60. methods: {
  61. touser(item) {
  62. uni.navigateTo({
  63. url: '/pageC/otherInfo?id=' + item.id
  64. })
  65. },
  66. follow(item) {
  67. var that = this
  68. $api.req({
  69. url: 'user/' + item.id + '/follow',
  70. method: 'post'
  71. }, function(res) {
  72. $api.info(res.msg)
  73. setTimeout(() => {
  74. that.page = 1
  75. that.list = []
  76. that.getlist()
  77. }, 1000)
  78. })
  79. },
  80. getlist() {
  81. var _this = this
  82. if (_this.type == '1') {
  83. $api.req({
  84. url: 'user/follow',
  85. data: {
  86. is_page: 1,
  87. page: _this.page,
  88. limit: 10
  89. }
  90. }, function(res) {
  91. if (res.code == 10000) {
  92. _this.list = _this.list.concat(res.data.list)
  93. _this.last_page = res.data.last_page
  94. }
  95. })
  96. } else {
  97. $api.req({
  98. url: 'user/fans',
  99. data: {
  100. is_page: 1,
  101. page: _this.page,
  102. limit: 10
  103. }
  104. }, function(res) {
  105. if (res.code == 10000) {
  106. _this.list = _this.list.concat(res.data.list)
  107. _this.last_page = res.data.last_page
  108. }
  109. })
  110. }
  111. },
  112. }
  113. }
  114. </script>
  115. <style lang="scss">
  116. .content::v-deep {
  117. background: #FFFFFF;
  118. .u-slot-title {
  119. image {
  120. width: 92rpx;
  121. height: 92rpx;
  122. border-radius: 50%;
  123. }
  124. .img-right {
  125. padding-left: 20rpx;
  126. text:first-child {
  127. font-size: 32rpx;
  128. font-family: PingFangSC, PingFang SC;
  129. font-weight: 500;
  130. color: #333333;
  131. }
  132. text:last-child {
  133. font-size: 26rpx;
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 400;
  136. color: #999999;
  137. padding-top: 12rpx;
  138. max-width: 450rpx;
  139. }
  140. }
  141. }
  142. .u-slot-value {
  143. .add {
  144. width: 148rpx;
  145. height: 56rpx;
  146. background: #FFFFFF;
  147. border-radius: 28rpx;
  148. border: 2rpx solid #00B0B0;
  149. font-size: 24rpx;
  150. text {
  151. font-weight: 400;
  152. color: #00B0B0;
  153. }
  154. }
  155. .btn {
  156. width: 148rpx;
  157. height: 56rpx;
  158. background: #FFFFFF;
  159. border-radius: 28rpx;
  160. border: 2rpx solid #999999;
  161. font-size: 24rpx;
  162. font-family: PingFangSC, PingFang SC;
  163. font-weight: 400;
  164. color: #555555;
  165. text-align: center;
  166. line-height: 56rpx;
  167. }
  168. }
  169. }
  170. </style>