[update] 年度制修订标准化发起驳回到第一个节点不可选人
This commit is contained in:
+2
-2
@@ -55,9 +55,9 @@
|
||||
<!-- 业务基本信息 -->
|
||||
<div class="process-part-title">{{ $t('basicServiceInformation') }}</div>
|
||||
<!-- 节点1、标准工程师发起的基本信息表单 -->
|
||||
<engineer-init-base-info v-if="[1, 3].includes(currentNode)" ref="baseInfoRef"></engineer-init-base-info>
|
||||
<engineer-init-base-info v-if="[1, 3].includes(currentNode)" ref="baseInfoRef" :currentNode="currentNode"></engineer-init-base-info>
|
||||
<!-- 节点2、部所联络人选取审批人 -->
|
||||
<contact-select-approver-base-info v-else-if="[2, 5].includes(currentNode)" ref="baseInfoRef"></contact-select-approver-base-info>
|
||||
<contact-select-approver-base-info v-else-if="[2, 5].includes(currentNode)" ref="baseInfoRef" :currentNode="currentNode"></contact-select-approver-base-info>
|
||||
<!-- 节点3、主起草单位主管级领导审批下发 -->
|
||||
<leader-approve-sent-base-info v-else-if="currentNode === 4" ref="baseInfoRef"></leader-approve-sent-base-info>
|
||||
<!-- 节点4、主起草人填写信息 -->
|
||||
|
||||
+6
-1
@@ -94,6 +94,11 @@ export default {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: false
|
||||
},
|
||||
currentNode: {
|
||||
type: Number,
|
||||
required: false,
|
||||
default: 0
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -278,7 +283,7 @@ export default {
|
||||
* 需要能判断是否是被驳回,产生的待办点击进入的,是的话需要显示带出被驳回的法规的联络人,
|
||||
* 并且去掉批量设置联络人按钮,如需修改联络人,删除该标准重新走标准化发起流程 ??
|
||||
*/
|
||||
if (this.$route.query.processInstanceId) {
|
||||
if (this.$route.query.currentNode && this.$route.query.currentNode === 3) {
|
||||
this.isRejectedTodo = true
|
||||
} else {
|
||||
this.isRejectedTodo = false
|
||||
|
||||
Reference in New Issue
Block a user