ota.vue
1.19 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
40
41
42
43
44
45
46
47
48
<template>
<div class="tenant-class">
<BasicForm @register="registerForm" />
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
import { BasicForm, useForm } from '/@/components/Form';
import { otaSchema } from './config';
export default defineComponent({
name: 'Index',
components: { BasicForm },
emits: ['success', 'register', 'funcResetFields'],
setup() {
const getValueData: any = ref({});
const [registerForm, { getFieldsValue, resetFields, setFieldsValue }] = useForm({
schemas: otaSchema,
showActionButtonGroup: false,
});
const setFieldsValueFunc = (v) => {
setFieldsValue(v);
};
function getAllFields(getV) {
const values = getFieldsValue();
getValueData.value = values;
getV = getValueData.value;
return getV;
}
function funcResetFields() {
resetFields();
}
return {
setFieldsValueFunc,
funcResetFields,
getAllFields,
registerForm,
};
},
});
</script>
<style lang="less" scoped>
.tenant-class {
:deep(.ant-input-number) {
width: 95% !important;
}
}
</style>