sanmu
authored
|
1
2
3
4
5
6
7
8
9
10
11
|
<!-- 跟单信息 -->
<template>
<BasicForm @register="registerForm" />
</template>
<script lang="ts">
import { computed, defineComponent, reactive, ref, toRaw } from 'vue';
import { BasicForm, FormActionType, useForm } from '/@/components/Form/index';
import { useDrawerInner } from '/@/components/Drawer';
import { dateUtil } from '/@/utils/dateUtil';
import { FIELDS_TRACK_STAGE_INFO } from '../tableData';
import { getDisable } from '/@/utils/project';
|
sanmu
authored
|
12
|
import { get } from 'lodash-es';
|
sanmu
authored
|
13
14
15
16
|
export default defineComponent({
components: { BasicForm },
props: {
|
sanmu
authored
|
17
18
|
id: {
type: String,
|
sanmu
authored
|
19
|
},
|
sanmu
authored
|
20
21
22
|
trackFormData: {
type: Object,
},
|
sanmu
authored
|
23
24
|
},
emits: ['success'],
|
sanmu
authored
|
25
26
|
setup(props, { emit }) {
let fields = ref({});
|
sanmu
authored
|
27
28
29
30
31
32
|
const schemas = computed(() => {
return FIELDS_TRACK_STAGE_INFO.map((item) => ({
...item,
componentProps: {
...item.componentProps,
|
sanmu
authored
|
33
|
...(item.component === 'Select' && { showSearch: true }),
|
sanmu
authored
|
34
35
36
37
38
|
disabled: getDisable(
get(fields.value, `${item.field}`),
props.id,
get(props.trackFormData, `${item.field}`),
),
|
sanmu
authored
|
39
40
41
42
43
44
45
|
},
colProps: {
span: 24,
},
}));
});
|
sanmu
authored
|
46
|
const [registerForm, { setFieldsValue, getFieldsValue, resetFields }] = useForm({
|
sanmu
authored
|
47
48
|
labelWidth: 120,
schemas,
|
sanmu
authored
|
49
|
layout: 'vertical',
|
sanmu
authored
|
50
51
52
53
54
55
|
showActionButtonGroup: false,
actionColOptions: {
span: 24,
},
});
|
sanmu
authored
|
56
|
return { fields, schemas, registerForm, getFieldsValue, setFieldsValue, resetFields };
|
sanmu
authored
|
57
58
59
|
},
});
</script>
|
sanmu
authored
|
60
|
../constant
|