From edf125d33816ac5e97bd22eaf749e9e6d432e536 Mon Sep 17 00:00:00 2001 From: liwenxuan <1298531568@qq.com> Date: Tue, 25 Jun 2024 09:38:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E9=80=89=E4=B8=8B=E6=8B=89=E5=A4=9A?= =?UTF-8?q?=E9=80=89=E5=85=B3=E8=81=94=E7=B3=BB=E7=BB=9F=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E5=AD=97=E6=AE=B5v0.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/DesignForm/app/formPage.vue | 11 ++++++++++- .../appPage/appPageForm/openAppFormPage.vue | 12 ++++++++++++ .../lowcodepage/pageFlow/appTableFlow.vue | 13 +++++++++++++ .../lowcodepage/pageFlow/tableFlow.vue | 15 ++++++++++++++- .../sysworkflow/lowcodepage/runApp/runAppForm.vue | 13 +++++++++++++ 5 files changed, 62 insertions(+), 2 deletions(-) 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) + +}