fix: 🐛 系统管理页面弹窗无法打开问题修复
Former-commit-id: 9687d6658d6ffee87ece5c51402c73a9589e61f1
This commit is contained in:
@@ -20,10 +20,10 @@ const deptFormRef = ref(ElForm);
|
|||||||
|
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const ids = ref<number[]>([]);
|
const ids = ref<number[]>([]);
|
||||||
const dialog = {
|
const dialog = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
visible: false,
|
visible: false,
|
||||||
};
|
});
|
||||||
|
|
||||||
const queryParams = reactive<DeptQuery>({});
|
const queryParams = reactive<DeptQuery>({});
|
||||||
const deptList = ref<DeptVO[]>();
|
const deptList = ref<DeptVO[]>();
|
||||||
|
|||||||
@@ -53,10 +53,10 @@ const queryParams = reactive<DictQuery>({
|
|||||||
|
|
||||||
const dictList = ref<DictPageVO[]>();
|
const dictList = ref<DictPageVO[]>();
|
||||||
|
|
||||||
const dialog = {
|
const dialog = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
visible: false,
|
visible: false,
|
||||||
};
|
});
|
||||||
|
|
||||||
const formData = reactive<DictForm>({
|
const formData = reactive<DictForm>({
|
||||||
status: 1,
|
status: 1,
|
||||||
|
|||||||
@@ -29,10 +29,10 @@ const queryParams = reactive<DictTypeQuery>({
|
|||||||
|
|
||||||
const dictTypeList = ref<DictTypePageVO[]>();
|
const dictTypeList = ref<DictTypePageVO[]>();
|
||||||
|
|
||||||
const dialog = {
|
const dialog = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
visible: false,
|
visible: false,
|
||||||
};
|
});
|
||||||
|
|
||||||
const formData = reactive<DictTypeForm>({
|
const formData = reactive<DictTypeForm>({
|
||||||
status: 1,
|
status: 1,
|
||||||
|
|||||||
@@ -24,10 +24,10 @@ const queryFormRef = ref(ElForm);
|
|||||||
const menuFormRef = ref(ElForm);
|
const menuFormRef = ref(ElForm);
|
||||||
|
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const dialog = {
|
const dialog = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
visible: false,
|
visible: false,
|
||||||
};
|
});
|
||||||
|
|
||||||
const queryParams = reactive<MenuQuery>({});
|
const queryParams = reactive<MenuQuery>({});
|
||||||
const menuList = ref<MenuVO[]>([]);
|
const menuList = ref<MenuVO[]>([]);
|
||||||
|
|||||||
@@ -32,10 +32,10 @@ const queryParams = reactive<RoleQuery>({
|
|||||||
|
|
||||||
const roleList = ref<RolePageVO[]>();
|
const roleList = ref<RolePageVO[]>();
|
||||||
|
|
||||||
const dialog = {
|
const dialog = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
visible: false,
|
visible: false,
|
||||||
};
|
});
|
||||||
|
|
||||||
const formData = reactive<RoleForm>({
|
const formData = reactive<RoleForm>({
|
||||||
sort: 1,
|
sort: 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user