From 0080422938c0b90e9d51648cd3d775681027efa9 Mon Sep 17 00:00:00 2001 From: zhuxuechang <1494135711@qq.com> Date: Tue, 6 Dec 2022 11:32:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8A=A8=E6=80=81=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E4=BD=BF=E7=94=A8esc=E5=85=B3=E9=97=AD=E5=90=8E=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E6=89=93=E5=BC=80=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ChartData/components/ChartDataRequest/index.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue index 21511961..0511e370 100644 --- a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue @@ -1,5 +1,5 @@ @@ -50,8 +50,13 @@ defineProps({ const closeHandle = () => { emit('update:modelShow', false) +} + +const closeAndSendHandle = () => { + closeHandle() emit('sendHandle') } +