raise-five-internal-organs.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!-- 养五脏 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="tab-list">
  5. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList" :key="index"
  6. @click="checked(index)">
  7. {{item.title}}
  8. </view>
  9. </view>
  10. <view class="product-list">
  11. <view class="product-item" @tap="productDetails">
  12. <view class="product-item-column2">
  13. <image src="../../../static/img-4.png" class="product-item-column2-img" mode="aspectFill"></image>
  14. <view class="product-item-column2-bottom">
  15. <view class="product-item-column-name2">冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器</view>
  16. <view class="product-item-column2-row-between">
  17. <view class="product-item-column2-price">
  18. ¥394.00
  19. <text>¥34.00</text>
  20. </view>
  21. <button type="default" class="product-item-column2-btn">
  22. <image src="../../../static/add-icon.png" mode=""></image>
  23. </button>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="product-item" @tap="productDetails">
  29. <view class="product-item-column2">
  30. <image src="../../../static/img-4.png" class="product-item-column2-img" mode="aspectFill"></image>
  31. <view class="product-item-column2-bottom">
  32. <view class="product-item-column-name2">冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器</view>
  33. <view class="product-item-column2-row-between">
  34. <view class="product-item-column2-price">
  35. ¥394.00
  36. <text>¥34.00</text>
  37. </view>
  38. <button type="default" class="product-item-column2-btn">
  39. <image src="../../../static/add-icon.png" mode=""></image>
  40. </button>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="product-item" @tap="productDetails">
  46. <view class="product-item-column2">
  47. <image src="../../../static/img-4.png" class="product-item-column2-img" mode="aspectFill"></image>
  48. <view class="product-item-column2-bottom">
  49. <view class="product-item-column-name2">冻干柠檬片 蜂蜜柠檬茶 保留鲜度96% 美白神器</view>
  50. <view class="product-item-column2-row-between">
  51. <view class="product-item-column2-price">
  52. ¥394.00
  53. <text>¥34.00</text>
  54. </view>
  55. <button type="default" class="product-item-column2-btn">
  56. <image src="../../../static/add-icon.png" mode=""></image>
  57. </button>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="bottom">
  64. <view class="bottom-label">
  65. 精选搭配
  66. </view>
  67. <view class="featured-list">
  68. <view class="featured-item" @tap="seasonalHealthyFoodsShoppingCart">
  69. <view class="featured-item-top">
  70. <view class="featured-name">玫瑰平胃茶</view>
  71. <button type="default" class="look-btn">查看</button>
  72. </view>
  73. <view class="featured-msg">
  74. (胃痛)理气解郁、和胃散郁
  75. </view>
  76. <image src="../../../static/img-4.png" class="featured-img" mode="aspectFill"></image>
  77. <view class="featured-tag">
  78. 石斛15g
  79. </view>
  80. </view>
  81. <view class="featured-item" @tap="seasonalHealthyFoodsShoppingCart">
  82. <view class="featured-item-top">
  83. <view class="featured-name">玫瑰平胃茶</view>
  84. <button type="default" class="look-btn">查看</button>
  85. </view>
  86. <view class="featured-msg">
  87. (胃痛)理气解郁、和胃散郁
  88. </view>
  89. <image src="../../../static/img-4.png" class="featured-img" mode="aspectFill"></image>
  90. <view class="featured-tag">
  91. 石斛15g
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </template>
  98. <script>
  99. export default {
  100. data() {
  101. return {
  102. //选项卡
  103. isActive: 0,
  104. navList: [{
  105. index: 0,
  106. title: '养心',
  107. }, {
  108. index: 1,
  109. title: "养肝",
  110. }, {
  111. index: 2,
  112. title: "养脾",
  113. }, {
  114. index: 3,
  115. title: "养肺",
  116. }, {
  117. index: 4,
  118. title: "养肾",
  119. }],
  120. }
  121. },
  122. methods: {
  123. //选项卡
  124. checked(index) {
  125. this.isActive = index
  126. },
  127. //跳转商品详情
  128. productDetails(){
  129. uni.navigateTo({
  130. url:'../product-details/product-details'
  131. })
  132. },
  133. //跳转时令健康养生食品 购物车
  134. seasonalHealthyFoodsShoppingCart(){
  135. uni.navigateTo({
  136. url:'../seasonal-healthy-foods-shoppingCart/seasonal-healthy-foods-shoppingCart'
  137. })
  138. },
  139. }
  140. }
  141. </script>
  142. <style scoped lang="scss">
  143. @import "./raise-five-internal-organs.css";
  144. </style>