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) }