From f25f1d214e6fd6b74577916e6958ce7e0671de36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=85=A7=E5=BD=B1?= Date: Wed, 22 Oct 2025 09:11:37 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E9=A6=96=E9=A1=B5=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E5=9B=BE=E7=BC=93=E5=AD=98=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/product/HomeProduct.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/ebiz/product/HomeProduct.vue b/src/views/ebiz/product/HomeProduct.vue index 1aab8b3b3..b9918fddf 100644 --- a/src/views/ebiz/product/HomeProduct.vue +++ b/src/views/ebiz/product/HomeProduct.vue @@ -209,7 +209,11 @@ export default { async getHomeBottomImg() { const result = await getHomeBottomPic({ operateType: 'nonRealYB' }) if (result.result === '0' && result.content && result.content.length > 0) { - this.homeBottomPicUrl = result.content[0].picUrl + const timestamp = new Date().getTime() + const originalUrl = result.content[0].picUrl + this.homeBottomPicUrl = originalUrl.includes('?') + ? `${originalUrl}&t=${timestamp}` + : `${originalUrl}?t=${timestamp}` } }, async getTableData() {