Browse Source

update 优化缩进

LiuHao 1 year ago
parent
commit
5057976ad2
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/components/UserSelect/index.vue

+ 1 - 2
src/components/UserSelect/index.vue

@@ -138,7 +138,6 @@ const deptTreeRef = ref<ElTreeInstance>();
 const queryFormRef = ref<ElFormInstance>();
 const tableRef = ref<VxeTableInstance<UserVO>>();
 
-
 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(',');