diff --git a/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue b/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue index 35429ed..8a2841d 100644 --- a/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue +++ b/src/views/workCenter/standardInterpretationProcess/StandardInterpretationProcess.vue @@ -263,8 +263,8 @@ export default { this.btn = StandardInterpretationNodes.propertyOfValue('btn', this.currentNodeId) || [] // 如果有nodeId,但是匹配不到任何节点,就是是增加的审批节点 if (nodeId && !StandardInterpretationNodes.keyOfValue(nodeId)) { - // 同意按钮 - this.btn = ['agree'] + // 加签节点的按钮 + this.btn = ['transfer', 'save', 'agree', 'reject'] } // 查询人员信息 this.getPersonInfoStructure(this.processKey, () => { @@ -428,7 +428,6 @@ export default { standardId: standardData.standardId, projectId: this.projectId }) - delete params.data.processStandardInterpret.createTime params.data.processStandardInterpretClauseList = compData.clauseData || [] } else if (this.currentNodeId === StandardInterpretationNodes.controlDepartLiaisonDistribution.value) { // 联络人分发节点 diff --git a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate.vue b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate.vue index b7e965e..211f284 100644 --- a/src/views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate.vue +++ b/src/views/workCenter/standardInterpretationProcess/modules/InterpretationInitiate.vue @@ -243,6 +243,7 @@ export default { console.log(list) this.dataSource = list || [] if (this.dataSource.length) { + delete this.dataSource[0].createTime this.resetClauseTable() this.dataSource[0].standardId = this.dataSource[0].id this.$set(this.dataSource[0], 'decompositionSource', DecompositionSource.NO_INPUT.value)