From 09231d0eb1b322728a9cc76f32ce825e3da48d53 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 08 May 2025 08:43:43 +0800
Subject: [PATCH] 复核状态栏显示处理

---
 src/views/tickets/ticket.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/views/tickets/ticket.vue b/src/views/tickets/ticket.vue
index 4009ce2..c15b2c1 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -828,7 +828,9 @@
 
     showIsReviewText () {
       return (row) => {
-        if (['4', '5'].includes(row.status)) return row.isReview === 1 ? '是' : '否'
+        console.log(row, 111111)
+
+        if (['4', '5'].includes(String(row.status))) return row.isReview === 1 ? '是' : '否'
 
         return '/'
       }

--
Gitblit v1.9.3