交办时间年月日,整改时回显整改人
This commit is contained in:
20
unpackage/dist/dev/mp-weixin/request/api.js
vendored
20
unpackage/dist/dev/mp-weixin/request/api.js
vendored
@@ -226,6 +226,12 @@ function addCheckTable(params) {
|
||||
data: params
|
||||
});
|
||||
}
|
||||
function getOneTableInfo(id) {
|
||||
return request_request.requestAPI({
|
||||
url: `/admin/oneTable/info/${id}`,
|
||||
method: "GET"
|
||||
});
|
||||
}
|
||||
function getEnterprisetype() {
|
||||
return request_request.requestAPI({
|
||||
url: "/frontend/enterprise/type/select",
|
||||
@@ -299,16 +305,15 @@ function getCheckItemListDetail(params) {
|
||||
data: params
|
||||
});
|
||||
}
|
||||
function getDeptUsers(params) {
|
||||
function getDeptUsers(deptId) {
|
||||
return request_request.requestAPI({
|
||||
url: "/admin/user/dept/users",
|
||||
method: "GET",
|
||||
data: params
|
||||
url: deptId ? `/admin/user/dept/users/${deptId}` : "/admin/user/dept/users",
|
||||
method: "GET"
|
||||
});
|
||||
}
|
||||
function getParentDepts() {
|
||||
function getDeptChildren() {
|
||||
return request_request.requestAPI({
|
||||
url: "/admin/dept/parents",
|
||||
url: "/admin/dept/children",
|
||||
method: "GET"
|
||||
});
|
||||
}
|
||||
@@ -365,6 +370,7 @@ exports.getCheckPlanList = getCheckPlanList;
|
||||
exports.getCheckTableList = getCheckTableList;
|
||||
exports.getCheckTaskDetail = getCheckTaskDetail;
|
||||
exports.getDepartmentPersonUsers = getDepartmentPersonUsers;
|
||||
exports.getDeptChildren = getDeptChildren;
|
||||
exports.getDeptUsers = getDeptUsers;
|
||||
exports.getDeptUsersWithSubordinates = getDeptUsersWithSubordinates;
|
||||
exports.getEnterpriseinfo = getEnterpriseinfo;
|
||||
@@ -377,7 +383,7 @@ exports.getInspectionWarningList = getInspectionWarningList;
|
||||
exports.getMemberList = getMemberList;
|
||||
exports.getMyHiddenDangerList = getMyHiddenDangerList;
|
||||
exports.getMyWriteOffList = getMyWriteOffList;
|
||||
exports.getParentDepts = getParentDepts;
|
||||
exports.getOneTableInfo = getOneTableInfo;
|
||||
exports.getPlanTableDetail = getPlanTableDetail;
|
||||
exports.getQiniuUploadToken = getQiniuUploadToken;
|
||||
exports.getRectifyDetail = getRectifyDetail;
|
||||
|
||||
Reference in New Issue
Block a user