From 0a60dc460027aa765b76a8382466b151f90ac8a9 Mon Sep 17 00:00:00 2001
From: buaixuexideshitongxue <2936013465@qq.com>
Date: Tue, 14 Apr 2026 15:07:30 +0800
Subject: [PATCH] =?UTF-8?q?fix:=E5=8A=A0=E4=B8=8A=E5=AE=A1=E8=AE=A1?=
=?UTF-8?q?=E6=8A=A5=E5=91=8A?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/warning/components/detail.vue | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/views/warning/components/detail.vue b/src/views/warning/components/detail.vue
index 8e5e3bd..bd053b5 100644
--- a/src/views/warning/components/detail.vue
+++ b/src/views/warning/components/detail.vue
@@ -317,6 +317,16 @@ const isTooltipDisabled = (value, placeholder = "") => {
}
return (value === null || value === undefined || value === "") && !placeholder;
};
+
+function showSjbg() {
+ if(!formData.value.project.node){
+ return false;
+ }
+ const node = formData.value.project.node;
+ const nodes = ['original', 'audit', 'end'];
+ return nodes.indexOf(node) > -1
+}
+
//获取详情
const getDetailFun = async (val) => {
@@ -1149,6 +1159,7 @@ watch(() => formData.value.project.auditUnitId, (val) => {
+