金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
3.7 KiB

  1. <template>
  2. <view>
  3. <lf-nav title="活动名称活动名称" :showIcon="true"></lf-nav>
  4. <view class="cover">
  5. <image class="img" src="https://picsum.photos/200"></image>
  6. </view>
  7. <view>
  8. <u-tabs :list="tab_list" active-color="#15716E" inactive-color='#777777' :is-scroll="true" :current="current" @change="tabChange"></u-tabs>
  9. </view>
  10. <view class="goods-list">
  11. <!-- TODO 此处应为渲染多个lf-waterfall组件 -->
  12. <lf-waterfall :list="list" ref="uWaterfallFather"></lf-waterfall>
  13. </view>
  14. <u-back-top :scrollTop="pageScrollTop"></u-back-top>
  15. </view>
  16. </template>
  17. <script>
  18. import lfWaterfall from '@/components/lf-waterfall-shopdetails/lf-waterfall.vue';
  19. export default {
  20. components: {
  21. lfWaterfall
  22. },
  23. data(){
  24. return {
  25. current: 0,
  26. tab_list: [{
  27. name: '综合'
  28. },{
  29. name: '销量'
  30. },{
  31. name: '价格'
  32. }],
  33. list: [
  34. {
  35. id: 10,
  36. original_price: "4111.00",
  37. picture: "https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png",
  38. pictures: ["https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png"],
  39. price: "2412.00",
  40. product_id: 1008,
  41. sale: 0,
  42. title: "三亚悦榕庄(Banyan Tree Sanya Resort and Spa)"
  43. },
  44. {
  45. id: 10,
  46. original_price: "4111.00",
  47. picture: "https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png",
  48. pictures: ["https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png"],
  49. price: "2412.00",
  50. product_id: 1008,
  51. sale: 0,
  52. title: "三亚悦榕庄(Banyan Tree Sanya Resort and Spa)"
  53. },
  54. {
  55. id: 10,
  56. original_price: "4111.00",
  57. picture: "https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png",
  58. pictures: ["https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png"],
  59. price: "2412.00",
  60. product_id: 1008,
  61. sale: 0,
  62. title: "三亚悦榕庄(Banyan Tree Sanya Resort and Spa)"
  63. },
  64. {
  65. id: 10,
  66. original_price: "4111.00",
  67. picture: "https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png",
  68. pictures: ["https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png"],
  69. price: "2412.00",
  70. product_id: 1008,
  71. sale: 0,
  72. title: "三亚悦榕庄(Banyan Tree Sanya Resort and Spa)"
  73. },
  74. {
  75. id: 10,
  76. original_price: "4111.00",
  77. picture: "https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png",
  78. pictures: ["https://hainan.lanzulive.com/storage/images/v2-deb89623e0ee2a2dad34bcded6dfd1ed_1440w.png"],
  79. price: "2412.00",
  80. product_id: 1008,
  81. sale: 0,
  82. title: "三亚悦榕庄(Banyan Tree Sanya Resort and Spa)"
  83. }
  84. ]
  85. }
  86. },
  87. onLoad(){
  88. },
  89. methods: {
  90. tabChange(index){
  91. this.current = index;
  92. }
  93. }
  94. }
  95. </script>
  96. <style lang="scss" scoped="scoped">
  97. .cover{
  98. width: 750rpx;
  99. height: 245rpx;
  100. .img{
  101. width: 100%;
  102. height: 100%;
  103. }
  104. }
  105. .goods-list{
  106. padding: 30rpx 32rpx;
  107. }
  108. // tabs样式
  109. /deep/.u-scroll-box {
  110. display: flex;
  111. justify-content: center;
  112. align-items: center;
  113. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  114. }
  115. /deep/.u-scroll-box .u-tab-bar {
  116. background-color: #15716E!important;
  117. width: 80rpx!important;
  118. position: absolute;
  119. left: 0;
  120. bottom: -12rpx;
  121. }
  122. /deep/.special_tab .u-tabs .u-scroll-box .u-tab-bar {
  123. background-color: #15716E!important;
  124. width: 56rpx!important;
  125. position: absolute;
  126. height: 5rpx!important;
  127. left: 8rpx;
  128. bottom: -4rpx;
  129. }
  130. /deep/ .u-tab-item {
  131. font-size: 28rpx!important;
  132. }
  133. </style>