mineFollow.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <template>
  2. <view class="page">
  3. <u-navbar @leftClick="rightClick" :autoBack="true">
  4. <view class="tab" slot="center">
  5. <view :class="{commodity:follow==1}" @click="tabSwitch(1)">
  6. 商品
  7. </view>
  8. <view :class="{commodity:follow==2}" @click="tabSwitch(2)">
  9. 团长
  10. </view>
  11. </view>
  12. </u-navbar>
  13. <!-- 关注商品列表 -->
  14. <view class="content" v-if="follow==1">
  15. <view class="commodity-detail" v-for="item in commodityList">
  16. <image :src="item.img" class="commodity-img" mode=""></image>
  17. <view class="commodity-right">
  18. <view class="commodity-title">
  19. {{item.title}}
  20. </view>
  21. <view class="commodity-follow">
  22. <text v-show="item.followNum<=1000">{{item.followNum}} </text> <text
  23. v-show="item.followNum>1000">1000+</text>人关注
  24. </view>
  25. <view class="commodity-price">
  26. <text class="symbol">¥</text>
  27. <text class="integer">{{item.price[0]}}</text>.
  28. <text class="decimal">{{item.price[1]}}</text>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 关注商品列表 -->
  34. <!-- 关注团长列表 -->
  35. <view class="content" v-if="follow==2">
  36. <view class="team-content" v-for="item in teamList">
  37. <image :src="item.img" class="header-img" mode=""></image>
  38. <view class="team-right">
  39. <view class="">
  40. <view class="name">
  41. {{item.name}}
  42. </view>
  43. <view class="score">
  44. <u-rate count="5" :allowHalf="true" :gutter="1" inactiveColor="#ffacab"
  45. activeColor="#FF1515" v-model="item.score" :size='14'></u-rate>
  46. <text class="num">{{item.score}}</text>
  47. </view>
  48. </view>
  49. <button class="check">查看主页</button>
  50. </view>
  51. </view>
  52. </view>
  53. <!-- 关注团长列表 -->
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. follow: 1,
  61. commodityList: [{
  62. title: "OATLY 噢麦力 咖啡大师醇香燕麦奶早餐奶便携装植物蛋白饮料奶早餐奶便携装植物蛋奶早餐奶便携装植物蛋",
  63. followNum: 1001,
  64. price: ['100', '1'],
  65. img: 'https://img.shetu66.com/2023/04/26/1682496554628042.png'
  66. }],
  67. teamList: [{
  68. img: "http://pic.imeitou.com/uploads/allimg/240522/10-2405221F140.jpg",
  69. name: "张三",
  70. score: 4.5
  71. }, {
  72. img: "http://pic.imeitou.com/uploads/allimg/240522/10-2405221F140.jpg",
  73. name: "张三",
  74. score: 4.5
  75. }]
  76. }
  77. },
  78. methods: {
  79. tabSwitch(num) {
  80. this.follow = num
  81. },
  82. rightClick() {
  83. console.log(111)
  84. }
  85. }
  86. }
  87. </script>
  88. <style scoped lang="scss">
  89. .page {
  90. background-color: #fff;
  91. height: 100vh;
  92. position: relative;
  93. .tab {
  94. display: flex;
  95. justify-content: space-between;
  96. width: 240rpx;
  97. margin: 0 auto;
  98. font-size: 36rpx;
  99. .commodity {
  100. position: relative;
  101. font-weight: 600;
  102. }
  103. .commodity::before {
  104. content: '';
  105. display: block;
  106. height: 8rpx;
  107. width: 72rpx;
  108. background: linear-gradient(to right, #f83224, #fff);
  109. position: absolute;
  110. bottom: 5rpx;
  111. opacity: 0.8;
  112. }
  113. }
  114. .content {
  115. position: absolute;
  116. top: 190rpx;
  117. .team-content {
  118. display: flex;
  119. height: 168rpx;
  120. align-items: center;
  121. width: 702rpx;
  122. border-top: 2rpx solid rgba(151,151,151,0.2);
  123. margin-left: 24rpx;
  124. .team-right {
  125. display: flex;
  126. justify-content: space-between;
  127. width: 96%;
  128. align-items: center;
  129. .name {
  130. font-size: 30rpx;
  131. font-weight: 600;
  132. margin-bottom: 14rpx;
  133. }
  134. .score {
  135. width: 210rpx;
  136. height: 28rpx;
  137. background-color: rgba(255, 27, 0, 0.1);
  138. display: flex;
  139. border-radius: 12rpx;
  140. justify-content: space-around;
  141. .num {
  142. font-size: 22rpx;
  143. color: #ff1515;
  144. font-weight: 600;
  145. }
  146. }
  147. .check {
  148. width: 164rpx;
  149. height: 60rpx;
  150. border: 2rpx solid #f83224;
  151. color: #f83224;
  152. background-color: #fff;
  153. border-radius: 38rpx;
  154. font-size: 26rpx;
  155. margin: 0;
  156. padding: 0;
  157. text-align: center;
  158. line-height: 60rpx;
  159. }
  160. }
  161. }
  162. .header-img {
  163. width: 96rpx;
  164. height: 96rpx;
  165. border-radius: 50%;
  166. margin-right: 20rpx;
  167. }
  168. .commodity-detail {
  169. display: flex;
  170. padding: 0 24rpx;
  171. margin: 16rpx auto;
  172. .commodity-img {
  173. width: 204rpx;
  174. height: 204rpx;
  175. border-radius: 16rpx;
  176. margin-right: 20rpx;
  177. }
  178. .commodity-right {
  179. width: 466rpx;
  180. }
  181. .commodity-title {
  182. color: #222;
  183. font-size: 28rpx;
  184. font-weight: 600;
  185. margin-bottom: 12rpx;
  186. min-height: 78rpx;
  187. overflow: hidden;
  188. text-overflow: ellipsis;
  189. display: -webkit-box;
  190. -webkit-line-clamp: 2;
  191. -webkit-box-orient: vertical;
  192. }
  193. .commodity-follow {
  194. color: #777;
  195. font-size: 28rpx;
  196. margin-bottom: 14rpx;
  197. }
  198. .commodity-price {
  199. color: #f83224;
  200. font-weight: 600;
  201. margin-top: 20rpx;
  202. }
  203. .symbol,
  204. .decimal {
  205. font-size: 28rpx;
  206. }
  207. .integer {
  208. font-size: 36rpx;
  209. }
  210. }
  211. }
  212. }
  213. </style>