data.ts
3.1 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
128
129
130
131
132
import { ref } from 'vue';
import { queryNoOptions } from '../../../api/project/order';
export function getFormConfig(showFieldConfig: string) {
const innerNoOptions = ref([]);
return {
labelWidth: 100,
schemas: [
{
field: `innerNo`,
label: `内部编号`,
component: 'Input',
colProps: {
span: 6,
},
labelWidth: 70,
// componentProps: {
// options: innerNoOptions,
// showSearch: true,
// mode: 'multiple',
// onSearch: async (value: any) => {
// innerNoOptions.value = await queryNoOptions('innerNo', value);
// },
// },
},
...(showFieldConfig == 'true'
? [
{
field: `auditType`,
label: `审核字段类型`,
component: 'Select',
colProps: {
span: 6,
},
labelWidth: 140,
componentProps: {
options: [
{ label: '基本信息字段', value: 1 },
{ label: '其他信息字段', value: 0 },
],
},
},
]
: []),
...(showFieldConfig == 'invoiceNo'
? [
{
field: `invoiceNo`,
label: `invoice编号`,
component: 'Input',
colProps: {
span: 6,
},
labelWidth: 140,
},
]
: []),
...(showFieldConfig == 'checkNo'
? [
{
field: `checkNo`,
label: `checkNo编号`,
component: 'Input',
colProps: {
span: 6,
},
labelWidth: 140,
},
]
: []),
],
};
}
export const FIELDS_BASE_INFO = [
{
field: 'developmentCopyRmbTotalPrice',
component: 'Select',
labelWidth: 150,
label: '研发复制费合计¥',
rules: [{ required: true }],
},
{
field: 'projectStartTime',
component: 'Select',
labelWidth: 150,
label: '项目开始时间',
rules: [{ required: true }],
},
{
field: 'projectEndTime',
component: 'Select',
labelWidth: 150,
label: '项目结束时间',
rules: [{ required: true }],
},
{
field: 'spainPaidRmbCommission',
component: 'Select',
labelWidth: 150,
label: '西班牙已发提成¥',
rules: [{ required: true }],
},
{
field: 'paidRmbCommission',
component: 'Select',
labelWidth: 150,
label: '中国团队已发提成¥',
rules: [{ required: true }],
},
{
field: 'actualExchangeRate',
component: 'Select',
labelWidth: 150,
label: '实际汇率¥',
rules: [{ required: true }],
},
{
field: 'projectInnerProfitInfoStartTime',
component: 'Select',
labelWidth: 150,
label: '项目开始时间',
rules: [{ required: true }],
},
{
field: 'projectInnerProfitInfoEndTime',
component: 'Select',
labelWidth: 150,
label: '项目结束时间',
rules: [{ required: true }],
},
];