Quellcode durchsuchen

update 优化缩进

LiuHao vor 1 Jahr
Ursprung
Commit
5057976ad2
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen
  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(',');