From 67d892e25c0e37103dce68bcc2cf79ea8ca94aa9 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Tue, 8 Jul 2025 16:40:16 +0800 Subject: [PATCH] =?UTF-8?q?2025-07-08=20=E8=B6=85=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=EF=BC=88=E5=AE=A2=E6=88=B7=E4=BF=A1=E6=81=AF=E3=80=81=E5=85=B6?= =?UTF-8?q?=E4=BB=96=E9=A1=B5=E7=AD=BE=E5=B1=9E=E6=80=A7=E6=98=AF=E8=B6=85?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E7=9A=84=EF=BC=89=EF=BC=8C=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E6=97=B6=E8=87=AA=E5=8A=A8=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=EF=BC=88=E7=94=B1=E4=BA=8E=E7=AC=AC=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E6=89=93=E5=BC=80=E5=90=8E=E5=AD=98=E5=9C=A8=E7=BC=93?= =?UTF-8?q?=E5=AD=98=EF=BC=8C=E6=96=87=E4=BB=B6=E6=9B=B4=E6=96=B0=E5=90=8E?= =?UTF-8?q?=E5=86=8D=E6=AC=A1=E6=89=93=E5=BC=80=E8=BF=98=E6=98=AF=E4=B9=8B?= =?UTF-8?q?=E5=89=8D=E7=9A=84=EF=BC=8C=E4=B8=8D=E6=98=AF=E6=9C=80=E6=96=B0?= =?UTF-8?q?=E7=9A=84=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../technicalSpecificationDetail/com_bm_demoSlot.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue index f0be60c..ac0d92f 100644 --- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue +++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_bm_demoSlot.vue @@ -310,7 +310,9 @@ } checkUrl(data).then(({data}) => { if (data && data.code === 0) { - window.open(data.url); + // 强制添加时间戳避免缓存 + let urlWithTimestamp = data.url + (data.url.includes('?') ? '&' : '?') + 't=' + new Date().getTime() + window.open(urlWithTimestamp) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定'