diff --git a/js/demandPlan/plan_check_list.js b/js/demandPlan/plan_check_list.js index 0fff633..4fe4d57 100644 --- a/js/demandPlan/plan_check_list.js +++ b/js/demandPlan/plan_check_list.js @@ -174,7 +174,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; @@ -205,6 +205,9 @@ function exportExcel() { //审核状态 function getCheckStatus(statusType, status) { var company = ""; + if(statusType === '0' && status === '0'){ + return "已撤回"; + } if (statusType === '1') { return "审核通过"; } else if (statusType === '2') {