소스 검색

update 优化缩进

LiuHao 1 년 전
부모
커밋
5057976ad2
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  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(',');