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 @@ - 关闭 - + 关闭 +