From e2913d06ee9420a7220499e05f6795840f25692a Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 26 Feb 2025 12:27:49 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=9B=BE=E7=89=87=E6=88=96=E8=80=85pdf,?= =?UTF-8?q?=E6=B0=B4=E5=8D=B0=E5=87=BA=E7=8E=B0=E5=8F=98=E8=89=B2=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/data-visualization/canvas/DePreview.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue b/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue index ab9111f184..f43de15c96 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/DePreview.vue @@ -343,7 +343,7 @@ const refreshDataV = () => { } const initWatermark = (waterDomId = 'preview-canvas-main') => { - if (dvInfo.value.watermarkInfo && isMainCanvas(canvasId.value)) { + if (dvInfo.value.watermarkInfo && isMainCanvas(canvasId.value) && !downloadStatus.value) { activeWatermarkCheckUser(waterDomId, canvasId.value, scaleMin.value / 100) } }