123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <template>
- <view class="floor-template" v-if="floorData">
- <cm-floor-title
- :title="floorData.title"
- @click="$emit('more', floorData)"
- :sub-title="floorData.detail"
- ></cm-floor-title>
- <!-- banner区域 -->
- <view class="floor-banner-area" :class="'template-' + templateType" v-if="templateType !== '8'">
- <view
- class="banner-item"
- :class="'banner-item-' + (index + 1)"
- v-for="(item, index) in bannerList"
- :key="index"
- >
- <image :src="item.image" class="banner" @click="$emit('onBannerClick', item)"></image>
- </view>
- </view>
- <!-- 商品区域 -->
- <view class="floor-product-area">
- <view class="simple-swiper" v-if="withSwiperLayout">
- <cm-simple-swiper
- @change="onChange"
- :current="current"
- :circular="true"
- :swiperHeight="swiperHeight"
- :data="productList"
- :columns="3"
- :rows="swiperRows"
- :gapX="16"
- :gapY="16"
- :autoFill="true"
- padding="0 8rpx"
- :autoplay="false"
- >
- <template v-slot:slide="{ row }">
- <div class="product-list">
- <view class="product-item" @click="$emit('onProductClick', row.heheProduct)">
- <cm-product :data="row.heheProduct"></cm-product>
- </view>
- </div>
- </template>
- </cm-simple-swiper>
- </view>
- <view class="product-list default-list" v-else>
- <view
- class="product-item"
- v-for="(item, index) in productList"
- :key="index"
- @click="$emit('onProductClick', item.heheProduct)"
- >
- <cm-product :data="item.heheProduct"></cm-product>
- </view>
- </view>
- </view>
- <!-- banner区域 -->
- <view class="floor-banner-area template-8" v-if="templateType === '8'">
- <view class="banner-item banner-item-1">
- <image
- :src="bannerList[0] && bannerList[0].image"
- class="banner"
- @click="$emit('onBannerClick', item)"
- ></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- floorData: {
- type: Object,
- default: () => null
- }
- },
- data() {
- return {
- // 商品区域
- current: 0
- }
- },
- computed: {
- // 楼层id
- templateType() {
- return this.floorData?.floorContent.templateType
- },
- // banner图列表
- bannerList() {
- return this.splitBannersMap()
- },
- // 商品列表
- productList() {
- return this.floorData?.floorImageList
- },
- // 使用轮播图布局
- withSwiperLayout() {
- return [5, 9].indexOf(parseInt(this.templateType)) > -1
- },
- // 轮播图行数
- swiperRows() {
- if (this.templateType === '5') return 2
- if (this.templateType === '9') return 1
- return 2
- },
- // 轮播图高度
- swiperHeight() {
- return 480 * this.swiperRows
- }
- },
- methods: {
- // 从楼层数据中拆分出banner与link的关系
- splitBannersMap() {
- const bannerList = []
- if (this.floorData) {
- const floorContent = this.floorData?.floorContent
- for (let key in floorContent) {
- const linkValue = floorContent[key]
- if (key.indexOf('appletsAdsImage') > -1 && linkValue) {
- const obj = Object.create(null)
- obj.id = parseInt(key[key.length - 1])
- const jumpTypeKey = 'jumpType' + obj.id
- const jumpLinkKey = 'adsLink' + obj.id
- const jumpProductIdKey = 'productId' + obj.id
- const jumpImageKey = 'jumpImage' + obj.id
- obj.image = linkValue
- obj.jumpType = floorContent[jumpTypeKey]
- obj.jumpLink = floorContent[jumpLinkKey]
- obj.jumpProductId = floorContent[jumpProductIdKey]
- obj.jumpImage = floorContent[jumpImageKey]
- bannerList.push(obj)
- }
- }
- }
- return bannerList.sort((a, b) => a.id - b.id)
- },
- // 轮播图切换事件
- onChange(e) {
- this.current = e.current
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .floor-template {
- background-color: #f7f7f7;
- }
- // 轮播图尺寸
- .size-type-1 {
- width: 702rpx;
- height: 240rpx;
- }
- .size-type-2 {
- width: 343rpx;
- height: 524rpx;
- }
- .size-type-3 {
- width: 343rpx;
- height: 254rpx;
- }
- // banner 区域
- .floor-banner-area {
- padding: 0 16rpx;
- padding-bottom: 8rpx;
- &::after {
- display: block;
- content: '';
- clear: both;
- }
- .banner-item {
- float: left;
- padding: 8rpx;
- .banner {
- width: 100%;
- height: 100%;
- display: block;
- background: pink;
- border-radius: 16rpx;
- }
- }
- &.template-1 {
- .banner-item-1 {
- @extend .size-type-1;
- }
- }
- &.template-2 {
- .banner-item-1 {
- @extend .size-type-1;
- }
- .banner-item-2 {
- @extend .size-type-2;
- }
- .banner-item-3 {
- @extend .size-type-2;
- }
- }
- &.template-3 {
- .banner-item-1 {
- @extend .size-type-2;
- }
- .banner-item-2 {
- @extend .size-type-2;
- }
- }
- &.template-4 {
- }
- &.template-5 {
- }
- &.template-6 {
- .banner-item-1 {
- @extend .size-type-2;
- }
- .banner-item-2 {
- @extend .size-type-3;
- }
- .banner-item-3 {
- @extend .size-type-3;
- }
- }
- &.template-7 {
- .banner-item-1 {
- @extend .size-type-2;
- }
- .banner-item-2 {
- @extend .size-type-3;
- }
- .banner-item-3 {
- @extend .size-type-3;
- }
- .banner-item-4 {
- @extend .size-type-3;
- }
- .banner-item-5 {
- @extend .size-type-3;
- }
- }
- &.template-8 {
- padding-top: 8rpx;
- .banner-item-1 {
- @extend .size-type-1;
- }
- }
- &.template-9 {
- }
- }
- // 商品区域样式
- .floor-product-area {
- padding: 0 16rpx;
- .product-list {
- // @extend .cm-flex-between;
- // flex-wrap: wrap;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- // grid-template-rows: repeat(2, 1fr);
- grid-row-gap: 16rpx;
- .product-item {
- @extend .cm-flex-center;
- }
- }
- .simple-swiper {
- padding-top: 8rpx;
- }
- }
- </style>
|