|
@@ -207,6 +207,11 @@ const selectNextStep = (val: any) => {
|
|
|
// 办理对象是否必填
|
|
|
// nextHandlersRequired.value = ![0].includes(next.handlerType) && !showStepsArr.includes(state.processType);
|
|
|
nextHandlersRequired.value = ![0].includes(next.handlerType);
|
|
|
+
|
|
|
+ if (items.length === 1) {
|
|
|
+ // 如果办理对象只有一个默认选中
|
|
|
+ state.discernForm.nextHandlers = [items[0]];
|
|
|
+ }
|
|
|
};
|
|
|
// 办理对象是否能够选择多个(可以发起会签可以选择多个,不能发起会签只能选择一个)
|
|
|
const multipleLimit = computed(() => {
|