From 28bfcbb4b3a9943bb701ce4bf1c0875b13c29cf3 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Mon, 24 Mar 2025 15:15:02 +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/car_demand_plan/apply_plan_audit_list.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 "审核通过";