BaseFormPanel.vue
3.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<template>
<BasicForm @register="registerForm" />
</template>
<script lang="ts">
import { computed, defineComponent, ref } from 'vue';
import { BasicForm, useForm } from '/@/components/Form/index';
import { FIELDS_BASE_INFO } from '../tableData';
import { getDisable } from '/@/utils/project';
import { useOrderStoreWithOut } from '/@/store/modules/order';
import { useOrderInfo } from '/@/hooks/component/order';
import { get } from 'lodash-es';
export default defineComponent({
components: { BasicForm },
props: {
detailData: {
type: Object,
},
onGoCheckDetail: {
type: Function,
},
id: {
type: String,
},
},
emits: ['success'],
setup(props) {
let fields = ref({});
const picUrl = ref('');
const smallPicUrl = ref('');
const orderStore = useOrderStoreWithOut();
const {
customerCode,
projectNo,
productionDepartment,
innerNo,
poColor,
cnColor,
productStyle,
outboundType,
packetType,
} = useOrderInfo(orderStore);
var schemas = computed(() => {
const options = {
customerCode,
projectNo,
productionDepartment,
innerNo,
poColor,
cnColor,
productStyle,
outboundType,
packetType,
};
const res = FIELDS_BASE_INFO.map((item) => {
console.log(
'%c [ ]-62',
'font-size:13px; background:pink; color:#bf2c9f;',
getDisable(fields.value?.baseFields?.picUrl, props.id),
);
if (item.field === 'picUrl') {
return {
field: 'picUrl',
component: 'FieldUpload',
label: '图片',
rules: [{ required: true }],
colProps: {
span: 24,
},
componentProps: {
imgUrl: picUrl.value,
disabled: getDisable(get(fields.value, 'picUrl'), props.id),
onChange: (res) => {
if (res.file?.response?.data) {
picUrl.value = res.file?.response?.data?.picUrl;
smallPicUrl.value = res.file?.response?.data?.smallPicUrl;
setFieldsValue({ picUrl: picUrl.value });
clearValidate('picUrl');
}
},
},
};
}
return {
...item,
field: `${item.field}`,
componentProps: {
...(item.component === 'Select' && { options: options[item.field] }),
disabled: getDisable(get(fields.value, `${item.field}`), props.id),
},
colProps: {
span: 24,
},
};
});
return res;
});
var [registerForm, { setFieldsValue, getFieldsValue, resetFields, validate, clearValidate }] =
useForm({
labelWidth: 120,
schemas,
showActionButtonGroup: false,
actionColOptions: {
span: 24,
},
});
return {
fields,
registerForm,
getFieldsValue,
setFieldsValue,
resetFields,
validate,
picUrl,
smallPicUrl,
};
},
});
</script>