交办时间年月日,整改时回显整改人
This commit is contained in:
@@ -295,6 +295,14 @@ export function getCheckTableDetail(params) {
|
||||
});
|
||||
}
|
||||
|
||||
// 获取检查表完整详情(与后台检查计划详情对齐)
|
||||
export function getOneTableInfo(id) {
|
||||
return requestAPI({
|
||||
url: `/admin/oneTable/info/${id}`,
|
||||
method: 'GET'
|
||||
});
|
||||
}
|
||||
|
||||
// 获取检查表详情(排查验证用,新流程)
|
||||
export function getOneTableInspectDetail(id) {
|
||||
return requestAPI({
|
||||
@@ -402,12 +410,19 @@ export function getCheckItemListDetail(params) {
|
||||
});
|
||||
}
|
||||
|
||||
// 获取当前部门所有用户
|
||||
export function getDeptUsers(params) {
|
||||
// 根据部门id获取用户列表
|
||||
export function getDeptUsers(deptId) {
|
||||
return requestAPI({
|
||||
url: '/admin/user/dept/users',
|
||||
method: 'GET',
|
||||
data: params
|
||||
url: deptId ? `/admin/user/dept/users/${deptId}` : '/admin/user/dept/users',
|
||||
method: 'GET'
|
||||
});
|
||||
}
|
||||
|
||||
// 获取子级部门列表(从当前到最后一层)
|
||||
export function getDeptChildren() {
|
||||
return requestAPI({
|
||||
url: '/admin/dept/children',
|
||||
method: 'GET'
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user