This commit is contained in:
ailanyin
2023-05-17 12:37:48 +08:00
parent 60d8d3c95d
commit 0a22241c92
3 changed files with 114 additions and 139 deletions

View File

@ -104,7 +104,7 @@ export function insertAuthUser(data) {
// 根据角色ID查询部门树结构
export function deptTreeSelect(roleId) {
return request({
url: '/system/dept/dept-tree/' + roleId,
method: 'get'
})
url: "/system/dept/dept-tree/" + roleId,
method: "get",
});
}

View File

@ -129,10 +129,10 @@ export function updateAuthRole(data) {
// 查询部门下拉树结构
export function deptTreeSelect() {
return request({
url: '/system/dept/dept-tree',
method: 'get',
url: "/system/dept/dept-tree",
method: "get",
params: {
status: '1'
}
})
status: "1",
},
});
}