This commit is contained in:
parent
bc7d802ca8
commit
b16ee4540b
|
|
@ -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">' +
|
||||
|
|
|
|||
|
|
@ -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); // 再执行关闭
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue