diff --git a/src/components/DesignForm/assembly/index.ts b/src/components/DesignForm/assembly/index.ts index 3df9c5c6c..588f78504 100644 --- a/src/components/DesignForm/assembly/index.ts +++ b/src/components/DesignForm/assembly/index.ts @@ -592,6 +592,17 @@ const selectOption: any = [ }, config: {} }, + { + type: 'associatedForms', + label: '关联表单', + icon: '', + iconFont: 'fa-wpforms', + control: { + modelValue: '', + }, + config: {} + } + ] }, { diff --git a/src/widget/associatedforms/associatedForms.vue b/src/widget/associatedforms/associatedForms.vue new file mode 100644 index 000000000..11638e47d --- /dev/null +++ b/src/widget/associatedforms/associatedForms.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/src/widget/associatedforms/index.vue b/src/widget/associatedforms/index.vue new file mode 100644 index 000000000..162b8041a --- /dev/null +++ b/src/widget/associatedforms/index.vue @@ -0,0 +1,181 @@ + + + + \ No newline at end of file diff --git a/src/widget/index.ts b/src/widget/index.ts index 95c16a3d4..fec7a221c 100644 --- a/src/widget/index.ts +++ b/src/widget/index.ts @@ -14,6 +14,7 @@ import videoUpAndPlay from './videoupload/index.vue' import lowcodeCarsusel from './carousel/index.vue' import lowcodeTransfer from './lowcodetransfer/index.vue' import lowcodeImage from './lowcodeimage/index.vue' +import associatedForms from './associatedforms/index.vue' export default (app: any) => { @@ -30,4 +31,5 @@ export default (app: any) => { app.component('LowcodeCarsusel',lowcodeCarsusel) app.component('LowcodeTransfer',lowcodeTransfer) app.component('LowcodeImage',lowcodeImage) + app.component('AssociatedForms',associatedForms) }