sh-grid-swiper.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <!-- 产品分类导航 -->
  3. <view class="wrap">
  4. <view class="menu-category-box u-m-b-10" :style="list.length <= oneRowNum ? `height:180rpx` : `height:380rpx`">
  5. <swiper
  6. class="menu-swiper-box"
  7. @change="onSwiper"
  8. :style="list.length <= oneRowNum ? `height:160rpx` : `height:380rpx`"
  9. circular
  10. :autoplay="false"
  11. :interval="3000"
  12. :duration="1000"
  13. >
  14. <swiper-item class="menu-swiper-item" v-for="(itemList, index) in newList" :key="index">
  15. <view class="menu-tab-box u-flex u-flex-wrap">
  16. <view
  17. class="tab-list u-flex-col u-col-center u-row-center"
  18. :style="{ width: 100 / oneRowNum + '%' }"
  19. v-for="(item, index) in itemList"
  20. :key="index"
  21. @tap="$tools.routerTo(item.path)"
  22. >
  23. <image class="tab-img" :src="item.image"></image>
  24. <text class="">{{ item.name }}</text>
  25. </view>
  26. </view>
  27. </swiper-item>
  28. </swiper>
  29. <view class="menu-category-dots" v-if="newList.length > 1">
  30. <text :class="categoryCurrent === index ? 'category-dot-active' : 'category-dot'" v-for="(dot, index) in newList.length" :key="index"></text>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. /**
  38. * shGridSwiper-滑动宫格列表
  39. * @property {Array} list - 列表数据
  40. * @property {Number|String} oneRowNum - 单行数量
  41. */
  42. export default {
  43. components: {},
  44. data() {
  45. return {
  46. categoryCurrent: 0 ,//分类轮播下标
  47. };
  48. },
  49. props: {
  50. list: {
  51. type: Array,
  52. default: () => {
  53. return [];
  54. }
  55. },
  56. oneRowNum: {
  57. type: [Number, String],
  58. default: 5
  59. }
  60. },
  61. computed: {
  62. newList() {
  63. if (this.list.length) {
  64. let data = this.$tools.splitData(this.list, this.oneRowNum * 2);
  65. return data;
  66. }
  67. }
  68. },
  69. methods: {
  70. // 轮播
  71. onSwiper(e) {
  72. this.categoryCurrent = e.detail.current;
  73. },
  74. jump(path, query) {
  75. this.$Router.push({
  76. path: path,
  77. query: query
  78. });
  79. }
  80. }
  81. };
  82. </script>
  83. <style lang="scss">
  84. // 产品分类
  85. .menu-category-box,
  86. .menu-swiper-box {
  87. position: relative;
  88. background: #fff;
  89. .menu-swiper-item {
  90. background: #fff;
  91. height: 100%;
  92. width: 100%;
  93. }
  94. .menu-tab-box {
  95. .tab-list {
  96. font-size: 26rpx;
  97. font-weight: 500;
  98. color: rgba(51, 51, 51, 1);
  99. margin: 20rpx 0;
  100. .tab-img {
  101. width: 98rpx;
  102. height: 98rpx;
  103. margin-bottom: 10rpx;
  104. }
  105. }
  106. }
  107. .menu-category-dots {
  108. display: flex;
  109. position: absolute;
  110. left: 50%;
  111. transform: translateX(-50%);
  112. bottom: 10rpx;
  113. .category-dot {
  114. width: 12rpx;
  115. height: 12rpx;
  116. background: #eeeeee;
  117. border-radius: 50%;
  118. margin-right: 10rpx;
  119. }
  120. .category-dot-active {
  121. width: 12rpx;
  122. height: 12rpx;
  123. background: #e9b461;
  124. border-radius: 50%;
  125. margin-right: 10rpx;
  126. }
  127. }
  128. }
  129. </style>