This commit is contained in:
jiang 2025-07-10 17:56:55 +08:00
parent c15ecca0ba
commit f10f91eb19
3 changed files with 6 additions and 6 deletions

View File

@ -237,5 +237,5 @@ function planAuditDetail(obj) {
// 需求计划申请审核 // 需求计划申请审核
function checkDetail(obj) { function checkDetail(obj) {
obj.checkType = 2; obj.checkType = 2;
openIframeByParamObj("check_detail", "审核", "./child/apply_plan_detail.html", "92%", "95%", obj); openIframeByParamObj("check_detail", "审核", "./child/apply_plan_detail.html", "92%", "95%", obj,1);
} }

View File

@ -432,7 +432,7 @@ function setOperRecordInfo(list, obj) {
} else if (item.auditType === '3') { } else if (item.auditType === '3') {
dept = '项管中心'; dept = '项管中心';
} else if (item.auditType === '4') { } else if (item.auditType === '4') {
dept = '机具公司'; dept = '智联装备云控公司';
} }
let remark = setNullValue(item.auditRemark); let remark = setNullValue(item.auditRemark);
// 操作流程 // 操作流程
@ -511,9 +511,9 @@ function getCheckStatus(statusType, status) {
} else if (statusType === 2) { } else if (statusType === 2) {
company = "分公司"; company = "分公司";
} else if (statusType === 3) { } else if (statusType === 3) {
company = "项中心"; company = "项管中心";
} else if (statusType === 4) { } else if (statusType === 4) {
company = "机具公司"; company = "智联装备云控公司";
} }
if (status === 1) { if (status === 1) {
return "<span style='color:#FF9900;margin:0 5px 0 5px;font-size:16px'>●</span>待" + company + "审核"; return "<span style='color:#FF9900;margin:0 5px 0 5px;font-size:16px'>●</span>待" + company + "审核";

View File

@ -85,4 +85,4 @@ function closePage(type) {
} }
} }
parent.layer.close(index); // 再执行关闭 parent.layer.close(index); // 再执行关闭
} }