From 8ed2563e3395a56977eca6ae594b0fc04150bcae Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Sat, 15 Nov 2025 00:22:36 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A=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=E6=97=85?= =?UTF-8?q?=E5=B1=85=E5=95=86=E5=AE=B6PC=E7=AB=AF=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E7=9A=84=E4=B8=BB=E9=A1=B5=E8=A7=86=E9=A2=91=EF=BC=8C=E5=9C=A8?= =?UTF-8?q?=E5=AE=89=E5=8D=93=E5=92=8C=E7=94=B5=E8=84=91=E7=AB=AF=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E6=9C=AA=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_product/views/sojoumStore.vue | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkg_product/views/sojoumStore.vue b/pkg_product/views/sojoumStore.vue index d47c44a..90ca899 100644 --- a/pkg_product/views/sojoumStore.vue +++ b/pkg_product/views/sojoumStore.vue @@ -19,8 +19,8 @@ > @@ -678,8 +678,17 @@ export default { getFarmerData() { getJiaLouDetail(this.id).then(res => { this.store = res.data || {} + this.store.banner = res.data.banner.map(img => { + return { + type: 'img', + url: img + } + }) if(res.data.video) { - this.store.banner.unshift(res.data.video) + this.store.banner.unshift({ + type: 'video', + url: res.data.video + }) } this.getNews() this.getJiaLouProductList()