data.ts
776 Bytes
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
export const COLUMNS = {
1: [
{
title: '客户编码',
dataIndex: 'settingValue',
width: 150,
},
{
title: '利润率',
dataIndex: 'relationValue',
width: 150,
editComponent: 'InputNumber',
editRow: true,
},
],
2: [
{
title: '客户编码',
dataIndex: 'settingValue',
width: 150,
},
{
title: '包装费用',
dataIndex: 'relationValue',
width: 150,
editComponent: 'InputNumber',
editRow: true,
},
],
3: [
{
title: '名称',
dataIndex: 'settingName',
width: 150,
},
{
title: '值',
dataIndex: 'settingValue',
width: 150,
editComponent: 'InputNumber',
editRow: true,
},
],
};