mineFollow.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. import { getFollowList } from "../../network/api/follow";
  74. export default {
  75. data() {
  76. return {
  77. follow: 1,
  78. commodityList: [
  79. {
  80. title:
  81. "OATLY 噢麦力 咖啡大师醇香燕麦奶早餐奶便携装植物蛋白饮料奶早餐奶便携装植物蛋奶早餐奶便携装植物蛋",
  82. followNum: 1001,
  83. price: ["100", "1"],
  84. img: "https://img.shetu66.com/2023/04/26/1682496554628042.png",
  85. },
  86. ],
  87. teamList: [
  88. {
  89. img: "http://pic.imeitou.com/uploads/allimg/240522/10-2405221F140.jpg",
  90. name: "张三",
  91. score: 4.5,
  92. },
  93. {
  94. img: "http://pic.imeitou.com/uploads/allimg/240522/10-2405221F140.jpg",
  95. name: "张三",
  96. score: 4.5,
  97. },
  98. ],
  99. };
  100. },
  101. computed: {
  102. i18n() {
  103. return this.$t("index");
  104. },
  105. },
  106. methods: {
  107. tabSwitch(num) {
  108. this.follow = num;
  109. },
  110. rightClick() {
  111. console.log(111);
  112. },
  113. toHomepage() {
  114. uni.navigateTo({
  115. url: "/pageD/homepage/homepage",
  116. });
  117. },
  118. toDetail(item) {
  119. uni.navigateTo({
  120. url: "/pageA/productdetails",
  121. });
  122. },
  123. getInfoList() {
  124. getFollowList({ interest_type: 0 }).then((res) => {
  125. console.log(res);
  126. });
  127. },
  128. },
  129. mounted() {
  130. this.getInfoList();
  131. },
  132. };
  133. </script>
  134. <style scoped lang="scss">
  135. .page {
  136. background-color: #fff;
  137. height: 100vh;
  138. position: relative;
  139. .tab {
  140. display: flex;
  141. justify-content: space-between;
  142. width: 240rpx;
  143. // margin: 0 auto;
  144. font-size: 36rpx;
  145. // margin-right: 60rpx;
  146. .commodity {
  147. position: relative;
  148. font-weight: 600;
  149. }
  150. .commodity::before {
  151. content: "";
  152. display: block;
  153. height: 8rpx;
  154. width: 100%;
  155. background: linear-gradient(to right, #f83224, #fff);
  156. position: absolute;
  157. bottom: 5rpx;
  158. opacity: 0.8;
  159. }
  160. }
  161. .content {
  162. position: absolute;
  163. top: 190rpx;
  164. .team-content {
  165. display: flex;
  166. height: 168rpx;
  167. align-items: center;
  168. width: 702rpx;
  169. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  170. margin-left: 24rpx;
  171. .team-right {
  172. display: flex;
  173. justify-content: space-between;
  174. width: 96%;
  175. align-items: center;
  176. .name {
  177. font-size: 30rpx;
  178. font-weight: 600;
  179. margin-bottom: 14rpx;
  180. }
  181. .score {
  182. width: 210rpx;
  183. height: 28rpx;
  184. background-color: rgba(255, 27, 0, 0.1);
  185. display: flex;
  186. border-radius: 12rpx;
  187. justify-content: space-around;
  188. .num {
  189. font-size: 22rpx;
  190. color: #ff1515;
  191. font-weight: 600;
  192. }
  193. }
  194. .check {
  195. width: 164rpx;
  196. height: 60rpx;
  197. border: 2rpx solid #f83224;
  198. color: #f83224;
  199. background-color: #fff;
  200. border-radius: 38rpx;
  201. font-size: 26rpx;
  202. margin: 0;
  203. padding: 0;
  204. text-align: center;
  205. line-height: 60rpx;
  206. }
  207. }
  208. }
  209. .header-img {
  210. width: 96rpx;
  211. height: 96rpx;
  212. border-radius: 50%;
  213. margin-right: 20rpx;
  214. }
  215. .commodity-detail {
  216. display: flex;
  217. padding: 0 24rpx;
  218. margin: 16rpx auto;
  219. .commodity-img {
  220. width: 204rpx;
  221. height: 204rpx;
  222. border-radius: 16rpx;
  223. margin-right: 20rpx;
  224. }
  225. .commodity-right {
  226. width: 466rpx;
  227. }
  228. .commodity-title {
  229. color: #222;
  230. font-size: 28rpx;
  231. font-weight: 600;
  232. margin-bottom: 12rpx;
  233. // min-height: 78rpx;
  234. overflow: hidden;
  235. text-overflow: ellipsis;
  236. display: -webkit-box;
  237. -webkit-line-clamp: 2;
  238. -webkit-box-orient: vertical;
  239. }
  240. .commodity-follow {
  241. color: #777;
  242. font-size: 28rpx;
  243. margin-bottom: 14rpx;
  244. }
  245. .commodity-price {
  246. color: #f83224;
  247. font-weight: 600;
  248. margin-top: 20rpx;
  249. }
  250. .symbol,
  251. .decimal {
  252. font-size: 28rpx;
  253. }
  254. .integer {
  255. font-size: 36rpx;
  256. }
  257. }
  258. }
  259. }
  260. </style>