index.vue
1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
<CollapseContainer title="配置设置">
<BasicForm @register="registerForm" />
</CollapseContainer>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
import { BasicForm, useForm } from '/@/components/Form';
import { formSchema } from './config';
import { CollapseContainer } from '/@/components/Container/index';
export default defineComponent({
name: 'Index',
components: { BasicForm, CollapseContainer },
emits: ['success', 'register', 'funcResetFields'],
setup() {
const getValueData: any = ref({});
const [registerForm, { getFieldsValue, resetFields }] = useForm({
schemas: formSchema,
showActionButtonGroup: false,
});
function getAllFields(getV) {
const values = getFieldsValue();
getValueData.value = values;
getV = getValueData.value;
return getV;
}
function funcResetFields() {
resetFields();
}
return {
funcResetFields,
getAllFields,
registerForm,
};
},
});
</script>