From 24f83965b53449f02a0256e258c45335f7fa8ff0 Mon Sep 17 00:00:00 2001 From: aisen Date: Thu, 9 Jan 2025 15:28:27 +0800 Subject: [PATCH] =?UTF-8?q?[fix]=20=E4=BF=AE=E5=A4=8D=E6=97=A5=E5=8E=86?= =?UTF-8?q?=E7=BB=84=E4=BB=B6close=E4=BA=8B=E4=BB=B6=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tuniao-ui/components/tn-calendar/tn-calendar.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tuniao-ui/components/tn-calendar/tn-calendar.vue b/tuniao-ui/components/tn-calendar/tn-calendar.vue index 289b67b..fb6bee3 100644 --- a/tuniao-ui/components/tn-calendar/tn-calendar.vue +++ b/tuniao-ui/components/tn-calendar/tn-calendar.vue @@ -534,7 +534,9 @@ }, // 关闭窗口 close() { - this.$emit('input', false) + this.$emit('input', false); + //传递事件 + this.$emit('close'); } } }