update 征求意见流程

This commit is contained in:
赵霄
2023-12-06 18:03:05 +08:00
parent 64f8783bdc
commit f161543357
@@ -203,6 +203,7 @@
form-is-depend="isAdopt"
:pagination="false"
:extra-form="collectExtraForm"
:all-disabled="disabledConsultationList"
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }">
<!--意见汇总节点才用插槽用表头控制了-->
<template v-slot:opinion="{text, record, index}">
@@ -754,6 +755,11 @@ export default {
const nodes = [ConsultationProcess.moduleOwnerSummary.value, ConsultationProcess.leaderSummary.value]
return nodes.some(tt => this.currentNode.indexOf(tt) === 0)
},
// 征求意见列表禁用
disabledConsultationList () {
const nodes = [ConsultationProcess.leaderApproval.value, ConsultationProcess.regulatoryEngineerApproval.value]
return nodes.some(tt => this.currentNode.indexOf(tt) === 0)
},
columns () {
// 设计工程师填写征求意见表头
if (this.currentNode.indexOf(ConsultationProcess.designEngineerFillIn.value) === 0) {