mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
修复bug
This commit is contained in:
@@ -899,6 +899,7 @@ const onBindFormTypeChange = () => {
|
||||
// 流程绑定表单页面改变
|
||||
const onEntryPageChange = () => {
|
||||
formFlowEntryData.value.defaultFormId = undefined;
|
||||
defaultFormIdWidget.setDirty(true);
|
||||
entryDatasource = null;
|
||||
};
|
||||
const getFormShareInfo = (form: ANY_OBJECT) => {
|
||||
|
||||
@@ -130,19 +130,16 @@ interface IProps extends ThirdProps {
|
||||
dialog?: DialogProp<ANY_OBJECT>;
|
||||
}
|
||||
const props = withDefaults(defineProps<IProps>(), {
|
||||
flowEntry: () => {
|
||||
return {};
|
||||
},
|
||||
flowEntry: undefined,
|
||||
});
|
||||
const { thirdParams } = useThirdParty(props);
|
||||
const formItemSize = computed(() => {
|
||||
return layoutStore.defaultFormItemSize || thirdParams.value.defaultFormItemSize?.value;
|
||||
});
|
||||
|
||||
const entryXml = ref<string>();
|
||||
const dialogParams = computed(() => {
|
||||
return {
|
||||
flowEntry: props.flowEntry || thirdParams.value.flowEntry,
|
||||
flowEntry: props.flowEntry || thirdParams.value.flowEntry || {},
|
||||
};
|
||||
});
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user