databaseColumn.js
1.14 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
export default [
{
title: 'No',
dataIndex: 'id',
key: 'id',
scopedSlots: {
customRender: 'id',
},
align: 'center',
ellipsis: true,
width: 50,
},
{
title: '모델명',
dataIndex: 'modelName',
key: 'modelName',
scopedSlots: {
customRender: 'modelName',
},
align: 'center',
ellipsis: true,
width: 200,
},
{
title: '제조사',
dataIndex: 'maker',
key: 'maker',
scopedSlots: {
customRender: 'maker',
},
align: 'center',
ellipsis: true,
width: 120,
},
{
title: '종류',
dataIndex: 'usageName',
key: 'usageName',
scopedSlots: {
customRender: 'usageName',
},
align: 'center',
ellipsis: true,
width: 60,
},
{
title: '무게',
dataIndex: 'weight',
key: 'weight',
scopedSlots: {
customRender: 'weight',
},
align: 'center',
ellipsis: true,
width: 60,
},
{
title: '제원',
dataIndex: 'specification',
key: 'specification',
scopedSlots: {
customRender: 'specification',
},
align: 'center',
ellipsis: true,
width: 60,
},
];