数据权限查询

This commit is contained in:
陈淳
2022-09-15 19:45:51 +08:00
parent 2a4f646181
commit 71cf85f535
11 changed files with 117 additions and 36 deletions

View File

@@ -54,4 +54,13 @@ export function delDept(deptId) {
method: 'delete',
data:deptId
})
}
// 根据角色ID查询菜单下拉树结构
export function roleDeptTreeselect(roleId) {
return request({
url: '/dept/getListByRoleId/' + roleId,
method: 'get'
})
}