From 807bdf40da5178fcfcb9d1a4c5668b74fd81ffc6 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Fri, 01 Aug 2025 16:46:12 +0800
Subject: [PATCH] feat:江邬去除审核状态

---
 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 33bd882..0296447 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -540,6 +540,8 @@
 import geoJson from '@/assets/geoJson.json'
 import { mapGetters } from 'vuex'
 import { getAdcodeObj } from '@/utils/disposeData'
+import getBaseConfig from '@/buildConfig/config'
+const { envName } = getBaseConfig()
 function regExp (label, name) {
   var reg = new RegExp(label + '=([^&]*)(&|$)', 'g')
   return name.match(reg)[0].split('=')[1]
@@ -643,7 +645,7 @@
           { label: '处理人', prop: 'handler', width: 100 },
           {
             slot: true,
-            hide: false,
+            hide: envName === 'jiangwu'? true : false,
             label: '复核状态',
             prop: 'isReview',
             width: 90,

--
Gitblit v1.9.3