| | |
| | | })
|
| | | }
|
| | |
|
| | | // 查询部门列表(排除节点)
|
| | | export function listDeptExcludeChild(deptId) {
|
| | | return request({
|
| | | url: '/system/dept/list/exclude/' + deptId,
|
| | | method: 'get'
|
| | | })
|
| | | }
|
| | |
|
| | | // 查询部门详细
|
| | | export function getDept(deptId) {
|
| | | return request({
|
| | | url: '/system/dept/' + deptId,
|
| | | method: 'get'
|
| | | })
|
| | | }
|
| | |
|
| | | // 查询部门下拉树结构
|
| | | export function treeselect() {
|
| | | return request({
|
| | | url: '/system/dept/treeselect',
|
| | | method: 'get'
|
| | | })
|
| | | }
|
| | |
|
| | | // 根据角色ID查询部门树结构
|
| | | export function roleDeptTreeselect(roleId) {
|
| | | return request({
|
| | | url: '/system/dept/roleDeptTreeselect/' + roleId,
|
| | | method: 'get'
|
| | | })
|
| | | }
|