From ae86cd779bb6d2f442513bca3d36d40c9a3081f5 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Mon, 24 Mar 2025 14:44:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E8=AE=A1=E5=88=92=E6=92=A4?= =?UTF-8?q?=E5=9B=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/demandPlan/plan_check_list.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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') {