This commit is contained in:
jiang 2025-07-16 14:32:52 +08:00
parent bc7d802ca8
commit b16ee4540b
2 changed files with 6 additions and 2 deletions

View File

@ -383,6 +383,8 @@ function getDispatchCarData(id) {
} else if (index !== 0 && parseInt(item.auditType) === 9 && parseInt(item.auditStatus) === 9) {
operData = '驳回-给发起人' + creator + ',共间隔:' + item.times + ' 原因备注:' + remark + '';
} else if (index !== 0 && parseInt(item.auditType) === 2 && parseInt(item.auditStatus) === 1) {
operData = '审核确认通过,共间隔:' + item.times + ' 原因备注:' + remark + '';
} else if (index !== 0 && parseInt(item.auditType) === 2 && parseInt(item.auditStatus) === 2) {
operData = '完结-审核确认通过,共耗时:' + item.times + ' 原因备注:' + remark + '';
}
html += '<div class="layui-timeline-item">' +

View File

@ -328,9 +328,11 @@ function getDispatchCarData(id) {
operData = '发起申请';
} else if (index !== 0 && parseInt(item.auditType) === 1) {
operData = '重新提交申请';
} else if (index !== 0 && parseInt(item.auditType) === 2 && parseInt(item.auditStatus) === 2) {
} else if (index !== 0 && parseInt(item.auditType) === 9 && parseInt(item.auditStatus) === 9) {
operData = '驳回-给发起人' + creator + ',共间隔:' + item.times + ' 原因备注:' + remark + '';
} else if (index !== 0 && parseInt(item.auditType) === 2 && parseInt(item.auditStatus) === 1) {
operData = '审核确认通过,共间隔:' + item.times + ' 原因备注:' + remark + '';
} else if (index !== 0 && parseInt(item.auditType) === 2 && parseInt(item.auditStatus) === 2) {
operData = '完结-审核确认通过,共耗时:' + item.times + ' 原因备注:' + remark + '';
}
html += '<div class="layui-timeline-item">' +
@ -445,4 +447,4 @@ function closePage(type) {
window.parent.reloadData();
}
parent.layer.close(index); // 再执行关闭
}
}