|
@@ -865,8 +865,8 @@ watch(
|
|
|
}
|
|
|
);
|
|
|
const countersignDisabled = computed(() => {
|
|
|
- // 是否可以发起会签
|
|
|
- return state.ruleForm.nextHandlers.length > 1;
|
|
|
+ // 如果选择的办理对象超过1个就不不能修改发起会签 并且选择下一环节必须是部门节点
|
|
|
+ return state.ruleForm.nextHandlers.length > 1 || selectNext.value.businessType !== 2;
|
|
|
});
|
|
|
// 是否发起会签
|
|
|
const changeStartCountersign = (val: boolean) => {
|