diff --git a/js/car_demand_plan/apply_plan_audit_list.js b/js/car_demand_plan/apply_plan_audit_list.js index 063ef42..15d6e58 100644 --- a/js/car_demand_plan/apply_plan_audit_list.js +++ b/js/car_demand_plan/apply_plan_audit_list.js @@ -175,7 +175,7 @@ function initTable() { let html = ""; html += "详情"; let content = getCheckStatus(d.statusType, d.status); - if (!(content.indexOf('驳回') > -1 || content.indexOf('通过') > -1)) { + if (!(content.indexOf('驳回') > -1 || content.indexOf('已撤回') > -1 || content.indexOf('通过') > -1)) { html += "
|
审核"; } return html; @@ -206,6 +206,9 @@ function exportExcel() { //审核状态 function getCheckStatus(statusType, status) { + if(statusType === 0 && status === 0){ + return "已撤回"; + } var company = ""; if (statusType === 1) { return "审核通过";