Browse Source

关闭swiper组件循环,解决新品推荐区单张图片重复显示为3张问题

master
dy-hu 1 year ago
parent
commit
e65a64ff6a
  1. 6
      src/components/canvasShow/basics/product/pc/index.vue

6
src/components/canvasShow/basics/product/pc/index.vue

@ -77,7 +77,7 @@
</div>
<div class="item4" v-if="componentContent.productStyleValue == '4'" @click="jumpProductDetail(item)">
<div class="item4_content">
<div class="item4_image"><el-image :src="item.image" fit="contain"></el-image></div>
<div class="item4_info">
@ -113,7 +113,7 @@ import {commonMixin} from '../mixin'
slidesPerView: 4, //
spaceBetween: 13, //
autoplay: false, //
loop: true,
loop: false,
pagination: {
el: '.product-pagination'
},
@ -462,7 +462,7 @@ import {commonMixin} from '../mixin'
position: absolute;
left: 26px;
z-index: 100;
img{
width: 100%;
}

Loading…
Cancel
Save