Fix:2419 【商城小程序】商品详情顶部图片设置为自动轮播,2秒轮播一张图

This commit is contained in:
modendeveloper
2024-10-11 22:47:49 +08:00
parent 194a51ee19
commit f3e036b9be
+2 -2
View File
@@ -1,6 +1,6 @@
<template>
<view class="slider-banner product-bg">
<swiper class="swiper-wrapper" @change="handleChange" v-if="imgUrls.length > 0" :indicator-dots='true' indicator-color="rgba(255, 255, 255, .3)" indicator-active-color="#ffffff">
<swiper autoplay interval="2000" class="swiper-wrapper" @change="handleChange" v-if="imgUrls.length > 0" :indicator-dots='true' indicator-color="rgba(255, 255, 255, .3)" indicator-active-color="#ffffff">
<block v-for="(item, imgUrlsIndex) in imgUrls" :key="imgUrlsIndex">
<swiper-item>
<image v-if="!checkIfVideo(item)" :src="item" class="slide-image" />
@@ -38,7 +38,7 @@ export default {
currentVideo:null,
ProductConSwiper: {
autoplay: {
disableOnInteraction: false,
disableOnInteraction: true,
delay: 2000
},
loop: true,