交办时间年月日,整改时回显整改人

This commit is contained in:
王利强
2026-06-23 16:58:40 +08:00
parent cc94d3e3e9
commit d4897284e8
588 changed files with 1551 additions and 1393 deletions

View File

@@ -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'
});
}

View File

@@ -2,9 +2,9 @@ import Request from './luch-request/index.js';
// 基础的url
const baseUrl = 'https://yingji.hexieapi.com/prod-api';
// 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.140:5004'; //超哥本地
// const baseUrl = 'http://192.168.1.158:7003'; //测试环境