From 627f3e33dfd875511ebff8cc19a03df4c89799db Mon Sep 17 00:00:00 2001 From: danshihao Date: Tue, 23 Jul 2024 17:35:02 +0800 Subject: [PATCH] =?UTF-8?q?[fix=2087446]=20=E8=A7=A3=E8=AF=BB=E4=BA=BA?= =?UTF-8?q?=E5=A1=AB=E5=86=99=E6=B2=A1=E6=9C=89=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/InterpretationClauseTable.vue | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue index cb28165..9c6e825 100644 --- a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue +++ b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationClauseTable.vue @@ -57,8 +57,8 @@ @@ -518,6 +518,15 @@ export default { StandardInterpretationNodes.standardInterpreterSummary.value // 标准主解读人汇总 ].includes(this.currentNodeId) }, + // 是否显示删除按钮 + showDeleteBtn () { + return [ + StandardInterpretationNodes.initiated.value, // 法规工程师发起 + StandardInterpretationNodes.controlDepartLiaisonDistribution.value, // 主控部门联络人分发 + StandardInterpretationNodes.standardInterpreterDistribution.value, // 标准主解读人分发 + StandardInterpretationNodes.standardInterpreterReDistribution.value // 标准主解读人分发 + ].includes(this.currentNodeId) + }, // token header tokenHeader () { const head = { 'X-Access-Token': Vue.ls.get(ACCESS_TOKEN) }