From d7aa23dbc77ed544480477c464f66e922a3382b1 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Thu, 20 Feb 2025 17:08:47 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=B5=8C=E5=85=A5=E5=BC=8F=E8=B7=B3=E8=BD=AC=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../data-visualization/canvas/ComponentWrapper.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue index 427b7e5c65..b91d67790c 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue @@ -328,8 +328,13 @@ const onWrapperClick = e => { 'width=800,height=600,left=200,top=100,toolbar=no,scrollbars=yes,resizable=yes,location=no' ) } else if ('_blank' === jumpType) { - console.info('DataEase Component Jump _blank') - window.open(url, '_blank') + console.info('DataEase Component Jump _blank value:' + window['originOpen']) + if (window['originOpen']) { + console.info('DataEase Component originOpen _blank') + window['originOpen'](url, '_blank') + } else { + window.open(url, '_blank') + } } else { initOpenHandler(window.open(url, jumpType)) }