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) => { +