交办、整改责任人修改

This commit is contained in:
王利强
2026-06-30 09:47:10 +08:00
parent d4897284e8
commit 455fd4fc07
638 changed files with 5153 additions and 2572 deletions

View File

@@ -161,6 +161,13 @@ export function getHiddenDangerLabelList() {
method: 'GET'
});
}
//获取隐患来源列表
export function getHazardSourceList() {
return requestAPI({
url: '/frontend/hazard/source/list',
method: 'GET'
});
}
//获取部门人员列表(本部门、上级部门、上上级部门)
export function getDepartmentPersonUsers(params) {
return requestAPI({
@@ -170,6 +177,15 @@ export function getDepartmentPersonUsers(params) {
});
}
// 获取关联部门及人员列表(全部上级部门、本部门、全部下级部门)
export function getRelatedDeptUsers(params) {
return requestAPI({
url: '/frontend/hazard/dept/users/related',
method: 'GET',
data: params
});
}
//获取部门人员列表(包含参与过该隐患环节下的所有部门人员)
export function getDeptUsersWithSubordinates(params) {
return requestAPI({