ProfitFormPanel.vue
1.49 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
49
50
51
52
53
54
55
56
57
58
<template>
<BasicForm @register="registerForm" />
</template>
<script lang="ts">
import { computed, defineComponent, reactive, ref, toRaw } from 'vue';
import { BasicForm, useForm } from '/@/components/Form/index';
import { dateUtil } from '/@/utils/dateUtil';
import { FIELDS_PROFIT_INFO } from '../tableData';
import { getDisable } from '/@/utils/project';
import { get } from 'lodash-es';
export default defineComponent({
components: { BasicForm },
props: {
detailData: {
type: Object,
},
onGoCheckDetail: {
type: Function,
},
id: {
type: String,
},
},
emits: ['success'],
setup(props, { emit }) {
let fields = ref({});
const schemas = computed(() => {
return FIELDS_PROFIT_INFO.map((item) => {
return {
...item,
field: `${item.field}`,
componentProps: {
...item.componentProps,
disabled: getDisable(get(fields.value, `${item.field}`), props.id),
},
colProps: {
span: 24,
},
};
});
});
const [registerForm, { setFieldsValue, getFieldsValue, resetFields }] = useForm({
labelWidth: 120,
schemas,
showActionButtonGroup: false,
actionColOptions: {
span: 24,
},
});
return { fields, schemas, registerForm, getFieldsValue, setFieldsValue, resetFields };
},
});
</script>
../constant