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.
155 lines
3.2 KiB
155 lines
3.2 KiB
<template> |
|
<!-- 产品分类导航 --> |
|
<view class="menu-category-box mb10" v-if="carousel" :style="list.length <= menu ? `height:200rpx` : `height:360rpx`"> |
|
<swiper |
|
class="menu-swiper-box" |
|
:style="list.length <= menu ? `height:160rpx` : `height:320rpx`" |
|
@change="onSwiper" |
|
circular |
|
:autoplay="false" |
|
:interval="3000" |
|
:duration="1000" |
|
> |
|
<swiper-item class="menu-swiper-item" v-for="(itemList, index) in carousel" :key="index" :style="list.length <= menu ? `height:200rpx` : `height:340rpx`"> |
|
<view class="menu-tab-box"> |
|
<view class="tab-list y-f" :style="{ width: 690 / menu + 'rpx' }" v-for="item in itemList" :key="item.name" @tap="routerTo(item)"> |
|
<image class="tab-img Shop-selector-circular" :style="{ width: imgW + 'rpx', height: imgW + 'rpx' }" :src="item.pic"></image> |
|
<text class="Shop-selector-rect">{{ item.name }}</text> |
|
</view> |
|
</view> |
|
</swiper-item> |
|
</swiper> |
|
<view class="menu-category-dots" v-if="carousel.length > 1"> |
|
<text :class="categoryCurrent === index ? 'category-dot-active' : 'category-dot'" v-for="(dot, index) in carousel.length" :key="index"></text> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
components: {}, |
|
data() { |
|
return { |
|
categoryCurrent: 0 //分类轮播下标 |
|
}; |
|
}, |
|
props: { |
|
list: { |
|
type: Array, |
|
default: [] |
|
}, |
|
menu: { |
|
default: 4 |
|
}, |
|
imgW: { |
|
type: Number, |
|
default: 88 |
|
} |
|
}, |
|
computed: { |
|
carousel() { |
|
if (this.list) { |
|
let list = this.sortData(this.list, this.menu * 2); |
|
return list; |
|
} |
|
} |
|
}, |
|
created() {}, |
|
methods: { |
|
// 数据分层 |
|
sortData(oArr, length) { |
|
let arr = []; |
|
let minArr = []; |
|
oArr.forEach(c => { |
|
if (minArr.length === length) { |
|
minArr = []; |
|
} |
|
if (minArr.length === 0) { |
|
arr.push(minArr); |
|
} |
|
minArr.push(c); |
|
}); |
|
|
|
return arr; |
|
}, |
|
// 轮播 |
|
onSwiper(e) { |
|
this.categoryCurrent = e.detail.current; |
|
}, |
|
// 路由跳转 |
|
routerTo(item) { |
|
this.$yrouter.push(item.uniapp_url); |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss"> |
|
// 产品分类 |
|
.y-f { |
|
display: -webkit-box; |
|
display: -webkit-flex; |
|
display: flex; |
|
-webkit-box-orient: vertical; |
|
-webkit-box-direction: normal; |
|
-webkit-flex-direction: column; |
|
flex-direction: column; |
|
-webkit-box-align: center; |
|
-webkit-align-items: center; |
|
align-items: center; |
|
} |
|
|
|
.menu-category-box { |
|
padding: 30rpx 30rpx 0 30rpx; |
|
background: #fff; |
|
box-sizing: border-box; |
|
} |
|
.menu-category-box, |
|
.menu-swiper-box { |
|
position: relative; |
|
background: #fff; |
|
.menu-swiper-item { |
|
background: #fff; |
|
height: 100%; |
|
width: 100%; |
|
} |
|
.menu-tab-box { |
|
display: flex; |
|
flex-wrap: wrap; |
|
.tab-list { |
|
font-size: 22rpx; |
|
font-family: PingFang SC; |
|
font-weight: 500; |
|
color: rgba(51, 51, 51, 1); |
|
padding-bottom: 30rpx; |
|
|
|
.tab-img { |
|
border-radius: 25rpx; |
|
margin-bottom: 10rpx; |
|
} |
|
} |
|
} |
|
|
|
.menu-category-dots { |
|
display: flex; |
|
position: absolute; |
|
left: 50%; |
|
transform: translateX(-50%); |
|
bottom: 20rpx; |
|
|
|
.category-dot { |
|
width: 40rpx; |
|
height: 3rpx; |
|
background: #eeeeee; |
|
margin-right: 10rpx; |
|
} |
|
|
|
.category-dot-active { |
|
width: 40rpx; |
|
height: 3rpx; |
|
background: #a8700d; |
|
margin-right: 10rpx; |
|
} |
|
} |
|
} |
|
</style>
|
|
|