[update 标准解读流程]

This commit is contained in:
danshihao
2024-07-10 11:57:20 +08:00
parent ad0b45ee31
commit aca25e66e8
3 changed files with 8 additions and 3 deletions
@@ -68,7 +68,7 @@
<interpretation-liaison-distribute v-else-if="currentNodeId === StandardInterpretationNodes.controlDepartLiaisonDistribution.value"
:disabled="disabled" ref="businessComp"/>
<!-- 主解读人分发 -->
<interpretation-main-interpreter-distribute v-else-if="currentNodeId === StandardInterpretationNodes.standardInterpreterDistribution.value"
<interpretation-main-interpreter-distribute v-else-if="[StandardInterpretationNodes.standardInterpreterDistribution.value, StandardInterpretationNodes.standardInterpreterReDistribution.value].includes(currentNodeId)"
:disabled="disabled" ref="businessComp"/>
<!-- 解读人填写解读信息 -->
<!-- 标准主解读人单线审核 -->
@@ -104,7 +104,10 @@ export default {
computed: {
// 解读人填写信息节点
isInterpreterFillInfo () {
return this.currentNodeId === StandardInterpretationNodes.interpreterFillInfo.value
return [
StandardInterpretationNodes.interpreterFillInfoOne.value,
StandardInterpretationNodes.interpreterFillInfoTwo.value
].includes(this.currentNodeId)
},
// 是否解读人汇总
isStandardInterpreterSummary () {