sanmu
authored
|
1
2
3
4
|
<template>
<BasicForm @register="registerForm" />
</template>
<script lang="ts">
|
sanmu
authored
|
5
6
|
import { computed, defineComponent, ref, toRaw } from 'vue';
import { BasicForm, useForm } from '/@/components/Form/index';
|
sanmu
authored
|
7
8
9
10
11
|
import { useDrawerInner } from '/@/components/Drawer';
import { dateUtil } from '/@/utils/dateUtil';
import { FIELDS_INSPECTION_INFO } from '../tableData';
import { getDisable } from '/@/utils/project';
import { useOrderStoreWithOut } from '/@/store/modules/order';
|
sanmu
authored
|
12
|
import { get } from 'lodash-es';
|
sanmu
authored
|
13
14
15
16
17
18
|
import { useOrderInfo } from '/@/hooks/component/order';
export default defineComponent({
components: { BasicForm },
props: {
|
sanmu
authored
|
19
20
|
id: {
type: String,
|
sanmu
authored
|
21
22
23
|
},
},
emits: ['success'],
|
sanmu
authored
|
24
25
|
setup(props, { emit }) {
let fields = ref({});
|
sanmu
authored
|
26
27
28
29
30
31
32
33
34
|
const orderStore = useOrderStoreWithOut();
const { midCheckResult, endCheckResult } = useOrderInfo(orderStore);
const schemas = computed(() => {
const options = {
midCheckResult,
endCheckResult,
};
|
sanmu
authored
|
35
36
37
38
39
40
41
42
43
44
45
46
|
return FIELDS_INSPECTION_INFO.map((item) => {
return {
...item,
componentProps: {
...(item.component === 'Select' && { options: options[item.field] }),
disabled: getDisable(get(fields.value, item.field), props.id),
},
colProps: {
span: 24,
},
};
});
|
sanmu
authored
|
47
48
|
});
|
sanmu
authored
|
49
|
const [registerForm, { setFieldsValue, getFieldsValue, resetFields }] = useForm({
|
sanmu
authored
|
50
51
52
53
54
55
56
57
|
labelWidth: 120,
schemas,
showActionButtonGroup: false,
actionColOptions: {
span: 24,
},
});
|
sanmu
authored
|
58
59
60
61
62
63
64
65
|
return {
fields,
schemas,
registerForm,
setFieldsValue,
resetFields,
getFieldsValue,
};
|
sanmu
authored
|
66
67
68
|
},
});
</script>
|