From a084e8f0e30b2f1921a80dcb2359be73b8091f42 Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Thu, 6 Nov 2025 11:55:17 +0800 Subject: [PATCH] =?UTF-8?q?Fix:=EF=BC=9A4346=20=E3=80=90=E6=97=85=E5=B1=85?= =?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=90=8E=E5=8F=B0=E9=85=8D=E7=BD=AE=E7=9A=84=E6=97=85?= =?UTF-8?q?=E5=B1=85=E5=BA=97=E9=93=BA=E8=A7=86=E9=A2=91=E5=9C=A8=E5=89=8D?= =?UTF-8?q?=E7=AB=AF=E5=B0=8F=E7=A8=8B=E5=BA=8F=E8=BD=AE=E6=92=AD=E5=8C=BA?= =?UTF-8?q?=E5=9F=9F=E6=9C=AA=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_product/views/groupBuyDetails.vue | 2 +- pkg_product/views/sojoumStore.vue | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pkg_product/views/groupBuyDetails.vue b/pkg_product/views/groupBuyDetails.vue index 443d813..d3e17f0 100644 --- a/pkg_product/views/groupBuyDetails.vue +++ b/pkg_product/views/groupBuyDetails.vue @@ -91,7 +91,7 @@ :indicator-dots="false" circular next-margin="380rpx" - :autoplay="true" + :autoplay="c.images.length > 2" interval="3000" duration="10000"> diff --git a/pkg_product/views/sojoumStore.vue b/pkg_product/views/sojoumStore.vue index 8d14044..db4a85a 100644 --- a/pkg_product/views/sojoumStore.vue +++ b/pkg_product/views/sojoumStore.vue @@ -648,6 +648,12 @@ export default { getFarmerData() { getJiaLouDetail(this.id).then(res => { this.store = res.data || {} + if(res.data.video) { + this.store.banner = [ + ...this.store.banner, + res.data.video + ] + } this.getNews() this.getJiaLouProductList() })