mineFollow.vue 6.2 KB

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