feat: 权限系统单体应用改造完成

Former-commit-id: 8d5eaa698b11d420faa46b2c2854da4ccb0b9a1d
This commit is contained in:
horizons
2022-10-23 23:35:43 +08:00
parent cf24d080e5
commit 8746cd3b36
12 changed files with 90 additions and 90 deletions

View File

@@ -18,7 +18,7 @@ import {
// 导入API
import {
listUserPages,
getUserDetail,
getUserFormData,
deleteUsers,
addUser,
updateUser,
@@ -292,7 +292,7 @@ async function handleUpdate(row: { [key: string]: any }) {
const userId = row.id || state.ids;
await loadDeptOptions();
await loadRoleOptions();
getUserDetail(userId).then(({ data }) => {
getUserFormData(userId).then(({ data }) => {
formData.value = data;
});
}