|
@@ -867,7 +867,7 @@ watch(
|
|
|
);
|
|
|
const countersignDisabled = computed(() => {
|
|
|
// 如果选择的办理对象超过1个就不不能修改发起会签 并且选择下一环节必须是部门节点
|
|
|
- return state.ruleForm.nextHandlers.length > 1 || selectNext.value.businessType !== 2;
|
|
|
+ return state.ruleForm.nextHandlers.length !== 1 || selectNext.value.businessType !== 2;
|
|
|
});
|
|
|
// 是否发起会签
|
|
|
const changeStartCountersign = (val: boolean) => {
|
|
@@ -957,7 +957,6 @@ const selectHandlers = () => {
|
|
|
state.ruleForm.nextHandlers = state.ruleForm.nextHandlers.filter((item: any) => !AppConfigInfo.value.noSignOrgCode.includes(item.key));
|
|
|
}
|
|
|
}
|
|
|
- console.log('选择办理对象', state.ruleForm.nextHandlers,state.ruleForm.isStartCountersign)
|
|
|
};
|
|
|
// 是否展示主办
|
|
|
const showMainHandler = computed(() => {
|