|
@@ -29,13 +29,14 @@ import { ref, reactive, onMounted } from 'vue';
|
|
|
import { useRoute } from 'vue-router';
|
|
|
import { ElMessage } from 'element-plus';
|
|
|
import type { FormRules } from 'element-plus';
|
|
|
-
|
|
|
+// 接口
|
|
|
import { DictDataStore } from '@common/src/stores/system/dictData'; // 字典表
|
|
|
import { PersonalStore } from '@common/src/stores/admins/personal'; // 个人用户
|
|
|
import type { IQueryResult } from '@/util/types.util';
|
|
|
const personal = PersonalStore();
|
|
|
const dictData = DictDataStore();
|
|
|
|
|
|
+// 路由
|
|
|
const route = useRoute();
|
|
|
|
|
|
// 加载中
|