| | |
| | | }) |
| | | } |
| | | |
| | | // 查询用户列表 无数据权限 |
| | | export function listUserNoAuth(query) { |
| | | return request({ |
| | | url: '/system/user/list/no-data-auth', |
| | | method: 'get', |
| | | params: query |
| | | }) |
| | | } |
| | | |
| | | |
| | | // 查询用户详细 |
| | | export function getUser(userId) { |
| | | return request({ |
| | |
| | | return request({ |
| | | url: '/system/user/profile/avatar', |
| | | method: 'post', |
| | | headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, |
| | | data: data |
| | | }) |
| | | } |
| | |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | // 查询部门下拉树结构 无数据权限 |
| | | export function deptTreeSelectNoAuth() { |
| | | return request({ |
| | | url: '/system/user/deptTree/no-data-auth', |
| | | method: 'get' |
| | | }) |
| | | } |
| | | |
| | | |
| | | // 查询部门下拉树结构(flowable专用) |
| | | export function flowableDeptTreeSelect() { |
| | | return request({ |
| | | url: '/system/user/flowable/deptTree', |
| | | method: 'get' |
| | | }) |
| | | } |