From 754f830dda0165f605c8f7cff5336627b44d785b Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 4 Mar 2025 15:23:26 +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?=E4=BF=AE=E5=A4=8D=E5=A4=96=E9=83=A8=E5=8F=82=E6=95=B0=E5=AF=B9?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E9=93=BE=E6=8E=A5=E7=9A=84=E5=BD=B1=E5=93=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/views/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index 02e4c827a0..0ec1ae75cf 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -495,7 +495,7 @@ const jumpClick = param => { if (jumpInfo.publicJumpId) { let url = `${embeddedBaseUrl}#/de-link/${ jumpInfo.publicJumpId - }?fromLink=true&jumpInfoParam=${encodeURIComponent( + }?fromLink=true&ignoreParams=true&jumpInfoParam=${encodeURIComponent( Base64.encode(JSON.stringify(param)) )}` if (attachParamsInfo) { @@ -510,7 +510,9 @@ const jumpClick = param => { } else { let url = `${embeddedBaseUrl}#/preview?dvId=${ jumpInfo.targetDvId - }&fromLink=true&jumpInfoParam=${encodeURIComponent(Base64.encode(JSON.stringify(param)))}` + }&fromLink=true&ignoreParams=true&jumpInfoParam=${encodeURIComponent( + Base64.encode(JSON.stringify(param)) + )}` if (attachParamsInfo) { url = url + attachParamsInfo }