From ca0eac3f627a583bde5e3f6ffcbf059520ffbe2d Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 13 Nov 2024 14:17:25 +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?=E9=A2=84=E8=A7=88=E9=80=80=E5=87=BA=E9=87=8D=E6=96=B0=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E7=9C=8B=E4=B8=8D=E5=88=B0=E9=A2=84=E8=A7=88=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/components/dashboard/DbToolbar.vue | 2 +- core/core-frontend/src/views/data-visualization/PreviewHead.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/components/dashboard/DbToolbar.vue b/core/core-frontend/src/components/dashboard/DbToolbar.vue index 1b362b4d50..0d077ef956 100644 --- a/core/core-frontend/src/components/dashboard/DbToolbar.vue +++ b/core/core-frontend/src/components/dashboard/DbToolbar.vue @@ -138,7 +138,7 @@ const previewOuter = () => { return } canvasSave(() => { - const url = '#/preview?ignoreParams=true&dvId=' + dvInfo.value.id + const url = '#/preview?dvId=' + dvInfo.value.id + '&ignoreParams=true' const newWindow = window.open(url, '_blank') initOpenHandler(newWindow) }) diff --git a/core/core-frontend/src/views/data-visualization/PreviewHead.vue b/core/core-frontend/src/views/data-visualization/PreviewHead.vue index 3e39e6a03c..0e8304f0ab 100644 --- a/core/core-frontend/src/views/data-visualization/PreviewHead.vue +++ b/core/core-frontend/src/views/data-visualization/PreviewHead.vue @@ -35,7 +35,7 @@ const preview = () => { baseUrl = baseUrl.replace('oidcbi/', '') baseUrl = baseUrl.replace('casbi/', '') } - const url = baseUrl + '#/preview?&ignoreParams=true&dvId=' + dvInfo.value.id + const url = baseUrl + '#/preview?dvId=' + dvInfo.value.id + '&ignoreParams=true' const newWindow = window.open(url, '_blank') initOpenHandler(newWindow) }