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 efe7f9c0d1..86f1d292cd 100644 --- a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue +++ b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue @@ -348,8 +348,14 @@ const onWrapperClick = e => { } else { window.open(url, '_blank') } + if (inMobile.value) { + window.location.reload() + } } else { initOpenHandler(window.open(url, jumpType)) + if (inMobile.value) { + window.location.reload() + } } } catch (e) { console.warn('url 格式错误:' + url) diff --git a/core/core-frontend/src/views/data-visualization/PreviewCanvasMobile.vue b/core/core-frontend/src/views/data-visualization/PreviewCanvasMobile.vue index f6bb32f80e..b5a96576fb 100644 --- a/core/core-frontend/src/views/data-visualization/PreviewCanvasMobile.vue +++ b/core/core-frontend/src/views/data-visualization/PreviewCanvasMobile.vue @@ -1,6 +1,6 @@