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(',');