paihang.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <view class="content">
  3. <view class="tabs">
  4. <u-tabs :list="tabs" :scrollable="false" @click="tochangetab" lineWidth="0" :current="current" :activeStyle="{
  5. color: '#00B0B0',
  6. fontWeight: 'bold'
  7. }" :inactiveStyle="{
  8. color: '#999999',
  9. }"></u-tabs>
  10. </view>
  11. <view class="list">
  12. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  13. <view class="user hflex acenter">
  14. <image :src="item.avatar" mode="aspectFill"></image>
  15. <view class="name vflex">
  16. <text class="text_hide">{{item.username}}</text>
  17. <text v-if="current == 0">精品贴总数{{item.num}}篇</text>
  18. <text v-if="current == 1">点赞总数{{item.num}}次</text>
  19. <text class="text_hide" v-if="current == 2">{{item.introduction}}</text>
  20. </view>
  21. </view>
  22. <view class="item-right" v-if="current == 0">
  23. <image src="/static/images/zuozhe1.png" class="img1" mode="aspectFill" v-if="index == 0"></image>
  24. <image src="/static/images/zuozhe2.png" class="img1" mode="aspectFill" v-if="index == 1"></image>
  25. <image src="/static/images/zuozhe3.png" class="img1" mode="aspectFill" v-if="index == 2"></image>
  26. </view>
  27. <view class="item-right" v-if="current == 1">
  28. <image src="/static/images/dianzan-paihang1.png" class="img1" mode="aspectFill" v-if="index == 0">
  29. </image>
  30. <image src="/static/images/dianzan-paihang2.png" class="img1" mode="aspectFill" v-if="index == 1">
  31. </image>
  32. <image src="/static/images/dianzan-paihang3.png" class="img1" mode="aspectFill" v-if="index == 2">
  33. </image>
  34. </view>
  35. <view class="item-right" v-if="current == 2">
  36. <image src="/static/images/jifen1.png" class="img2" mode="aspectFill" v-if="index == 0"></image>
  37. <image src="/static/images/jifen2.png" class="img2" mode="aspectFill" v-if="index == 1"></image>
  38. <image src="/static/images/jifen3.png" class="img2" mode="aspectFill" v-if="index == 2"></image>
  39. </view>
  40. <view class="item-right" v-if="index > 2">
  41. <text>{{item.row_num}}</text>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import $api from '@/static/js/api.js'
  49. export default {
  50. data() {
  51. return {
  52. tabs: [{
  53. id: 'boutique',
  54. name: '精品贴排行',
  55. },
  56. {
  57. id: 'like',
  58. name: '点赞排行',
  59. },
  60. {
  61. id: 'integral',
  62. name: '积分排行',
  63. },
  64. ],
  65. current: 0,
  66. list: [],
  67. page: 1,
  68. last_page: 1,
  69. }
  70. },
  71. onLoad() {
  72. this.getlist()
  73. },
  74. onShow() {
  75. },
  76. onPullDownRefresh() {
  77. },
  78. onReachBottom() {
  79. if (this.page == this.last_page) {
  80. uni.$u.toast('已经到底了')
  81. return
  82. } else {
  83. this.page++
  84. this.getlist()
  85. }
  86. },
  87. methods: {
  88. getlist() {
  89. var _this = this
  90. $api.req({
  91. url: 'user/rank',
  92. method: 'GET',
  93. data: {
  94. is_page: 1,
  95. type: _this.tabs[_this.current].id,
  96. page: _this.page,
  97. limit: 10,
  98. }
  99. }, function(res) {
  100. if (res.code == 10000) {
  101. _this.list = _this.list.concat(res.data.list)
  102. _this.last_page = res.data.last_page
  103. }
  104. })
  105. },
  106. tochangetab(e) {
  107. this.current = e.index
  108. this.list = []
  109. this.page = 1
  110. this.getlist()
  111. },
  112. }
  113. }
  114. </script>
  115. <style lang="scss">
  116. .content {
  117. background: #FFFFFF;
  118. .tabs {}
  119. .list {
  120. .list-item {
  121. padding: 32rpx 28rpx;
  122. box-sizing: border-box;
  123. width: 100%;
  124. .item-right {
  125. .img1 {
  126. width: 188rpx;
  127. height: 52rpx;
  128. }
  129. .img2 {
  130. width: 60rpx;
  131. height: 38rpx;
  132. }
  133. text {
  134. font-size: 32rpx;
  135. font-family: SFPro, SFPro;
  136. font-weight: 400;
  137. color: #666666;
  138. }
  139. }
  140. .user {
  141. image {
  142. width: 100rpx;
  143. height: 100rpx;
  144. border-radius: 50%;
  145. margin-right: 20rpx;
  146. }
  147. .name {
  148. max-width: 384rpx;
  149. text:first-child {
  150. font-size: 32rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 500;
  153. color: #333333;
  154. }
  155. text:last-child {
  156. font-size: 24rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 400;
  159. color: #777777;
  160. padding-top: 10rpx;
  161. }
  162. }
  163. }
  164. }
  165. }
  166. }
  167. </style>