From 182cce161c2c74ba028f3a2c96fd975d5f3e9b87 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 12 Jul 2024 14:53:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F=E6=94=AF=E6=8C=81=E9=9A=90?= =?UTF-8?q?=E8=97=8F=E7=BB=84=E4=BB=B6=EF=BC=8C=E6=A0=B7=E5=BC=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/data-visualization/DvToolbar.vue | 13 +++++++------ .../editor/editor-style/VQueryChartStyle.vue | 6 ++++-- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/core/core-frontend/src/components/data-visualization/DvToolbar.vue b/core/core-frontend/src/components/data-visualization/DvToolbar.vue index 2ab95177f8..415366efd3 100644 --- a/core/core-frontend/src/components/data-visualization/DvToolbar.vue +++ b/core/core-frontend/src/components/data-visualization/DvToolbar.vue @@ -155,6 +155,7 @@ const backHandler = (url: string) => { openHandler.value.invokeMethod(pm) return } + dvMainStore.canvasStateChange({ key: 'curPointArea', value: 'base' }) wsCache.delete('DE-DV-CATCH-' + dvInfo.value.id) window.open(url, '_self') } @@ -191,6 +192,11 @@ const openOuterParamsSet = () => { const multiplexingCanvasOpen = () => { multiplexingRef.value.dialogInit('dataV') } + +const fullScreenPreview = () => { + dvMainStore.canvasStateChange({ key: 'curPointArea', value: 'base' }) + fullScreeRef.value.toggleFullscreen() +}