diff --git a/js/car_demand_plan/child/dispatch_car_detail.js b/js/car_demand_plan/child/dispatch_car_detail.js index 15610c2..87830a1 100644 --- a/js/car_demand_plan/child/dispatch_car_detail.js +++ b/js/car_demand_plan/child/dispatch_car_detail.js @@ -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 += '
' + diff --git a/js/car_demand_plan/child/dispatch_input_detail.js b/js/car_demand_plan/child/dispatch_input_detail.js index 1d52031..a8fead7 100644 --- a/js/car_demand_plan/child/dispatch_input_detail.js +++ b/js/car_demand_plan/child/dispatch_input_detail.js @@ -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 += '
' + @@ -445,4 +447,4 @@ function closePage(type) { window.parent.reloadData(); } parent.layer.close(index); // 再执行关闭 -} \ No newline at end of file +}