diff --git a/src/components/DesignForm/app/formPage.vue b/src/components/DesignForm/app/formPage.vue index 12bb0293d..6874c0993 100644 --- a/src/components/DesignForm/app/formPage.vue +++ b/src/components/DesignForm/app/formPage.vue @@ -96,6 +96,7 @@ const emits = defineEmits<{ (e: 'btnClick', type: string): void (e: 'change', val: any): void // 表单组件值发生变化时 (e: 'update:issave', type: boolean): void + (e: 'optionsValue3Get3', val: any,fieldName: string): void }>() const route = useRoute() @@ -958,6 +959,14 @@ defineExpose({ // getEditData, // submitEdit }) + + +function optionsValue3Get2(data: any,fieldName: string){ + + + emits('optionsValue3Get3',data,fieldName) + +}