From 8c97f0e441fd8511c805dd302ea826b045889dc7 Mon Sep 17 00:00:00 2001 From: 100011797 <2642441182@qq.com> Date: Thu, 23 Mar 2023 15:44:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=B9=E9=87=8F=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BatchDropdown/index.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/BatchDropdown/index.vue b/src/components/BatchDropdown/index.vue index 90368bbf..928bed9a 100644 --- a/src/components/BatchDropdown/index.vue +++ b/src/components/BatchDropdown/index.vue @@ -75,11 +75,9 @@ const handleMenuClick = (e: any) => { if(!(val?.popConfirm || val?.onClick)){ emits('update:isCheck', true); emits('change', true); - } - if (val?.popConfirm) { - visible.value = false; - } else { visible.value = true; + } else { + visible.value = false; } _item.value = (val || {}) as any; };