From 5057976ad21994a92aaa62ac168735859f5b7a73 Mon Sep 17 00:00:00 2001 From: LiuHao Date: Tue, 16 Apr 2024 16:05:43 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E4=BC=98=E5=8C=96=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/UserSelect/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/UserSelect/index.vue b/src/components/UserSelect/index.vue index e97b553..d544330 100644 --- a/src/components/UserSelect/index.vue +++ b/src/components/UserSelect/index.vue @@ -138,7 +138,6 @@ const deptTreeRef = ref(); const queryFormRef = ref(); const tableRef = ref>(); - const userDialog = useDialog({ title: '用户选择' }); @@ -172,7 +171,7 @@ const confirm = () => { }; const computedIds = (data) => { - if (data instanceof Array) { + if (data instanceof Array) { return [...data]; } else if (typeof data === 'string') { return data.split(',');