This commit is contained in:
cwchen 2024-02-22 17:59:34 +08:00
parent 6eabb3a252
commit d122c8e4fa
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import request from '@/utils/request'
/** 组织机构查询 */
export function fetchOrgList() {
return request({
url: '/system/sys/select/getOrgTree',
method: 'post'
})
}
export function fetchRoleList() {
return request({
url: '/system/sys/select/getRoleLists',
method: 'post'
})
}