From 1e887e6ea780dd0659a525d2f16dc466100dc6b0 Mon Sep 17 00:00:00 2001 From: huangyuxuan Date: Fri, 7 Feb 2025 14:12:00 +0800 Subject: [PATCH] =?UTF-8?q?[=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D](pet=5F?= =?UTF-8?q?=E9=97=A8=E5=8F=A3=E9=97=A8=E7=A6=81):=20=20-=20=E9=97=A8?= =?UTF-8?q?=E5=8F=A3=E9=97=A8=E7=A6=81bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../filingAudit/components/list.vue | 10 ++++-- .../filingAudit/components/sendUtil.vue | 8 ++--- .../publicAuidt/components/list.vue | 34 +++++++++++++++---- 3 files changed, 38 insertions(+), 14 deletions(-) diff --git a/src/views/freightVehicles/filingAudit/components/list.vue b/src/views/freightVehicles/filingAudit/components/list.vue index 1d923e2..c7cc374 100644 --- a/src/views/freightVehicles/filingAudit/components/list.vue +++ b/src/views/freightVehicles/filingAudit/components/list.vue @@ -189,7 +189,7 @@ export default { console.log('---------------------') console.log('row.IS_AUDIT:', row.IS_AUDIT) // 添加日志输出 console.log('this.IS_POLICE:', this.IS_POLICE) // 添加日志输出 - if (row.IS_AUDIT == null && this.IS_POLICE === '1') { + if (row.IS_AUDIT === '1' && this.IS_POLICE === '1') { return true } else { return false @@ -204,10 +204,14 @@ export default { this.$refs.sendUtil.init(row) }, getType(AUDIT_TYPE) { - if (AUDIT_TYPE === '0' || AUDIT_TYPE == null || AUDIT_TYPE === '') { + if (AUDIT_TYPE === '1'){ return '待审核' - } else if (AUDIT_TYPE === '1' || AUDIT_TYPE === '2') { + }else if (AUDIT_TYPE === '2'){ return '审核通过' + }else if (AUDIT_TYPE === '0'){ + return '审核驳回' + }else { + return '待申请' } }, // 搜索 diff --git a/src/views/freightVehicles/filingAudit/components/sendUtil.vue b/src/views/freightVehicles/filingAudit/components/sendUtil.vue index f7d54b0..52e896c 100644 --- a/src/views/freightVehicles/filingAudit/components/sendUtil.vue +++ b/src/views/freightVehicles/filingAudit/components/sendUtil.vue @@ -13,16 +13,16 @@ - - + + - - + + diff --git a/src/views/freightVehicles/publicAuidt/components/list.vue b/src/views/freightVehicles/publicAuidt/components/list.vue index 60b289c..95f66f1 100644 --- a/src/views/freightVehicles/publicAuidt/components/list.vue +++ b/src/views/freightVehicles/publicAuidt/components/list.vue @@ -72,19 +72,39 @@ - + - + - + - + - + @@ -97,8 +117,8 @@ - 关闭 - + 关闭 +