交办、整改责任人修改
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -5,7 +5,7 @@ import Request from './luch-request/index.js';
|
||||
// const baseUrl = 'https://yingji.hexieapi.com/prod-api';
|
||||
// const baseUrl = 'http://192.168.1.168:5004'; //廖哥本地
|
||||
const baseUrl = 'http://192.168.1.140:5004'; //超哥本地
|
||||
// const baseUrl = 'http://192.168.1.158:7003'; //测试环境
|
||||
// const baseUrl = 'http://192.168.1.158:7003/prod-api'; //测试环境
|
||||
|
||||
|
||||
// 图片/文件资源域名:去掉 /prod-api,便于 <image> / previewImage / downloadFile 直接访问
|
||||
|
||||
Reference in New Issue
Block a user