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
| export const exportColumn = [
| {
| title: "车牌号",
| key: "carNo",
| width: 100,
| },
| {
| title: "开始使用日期",
| key: "buyYear",
| width: 150,
| sortable: true,
| align: "center",
| },
| {
| title: "使用年限",
| key: "usefulLife",
| width: 140,
| sortable: true,
| align: "center",
| },
| {
| title: "本期行使里程(KM)",
| key: "mileage",
| width: 180,
| sortable: true,
| },
| {
| title: "累计行使里程(KM)",
| key: "allMileage",
| width: 180,
| sortable: true,
| align: "center",
| },
| {
| title: '本期维修次数',
| key: 'building',
| align: 'center',
| width: 180,
| sortable: true
| },
| {
| title: '本期维修金额(元)',
| key: 'door',
| align: 'center',
| width: 180
| },
| {
| title: '累计维修次数',
| key: 'door',
| align: 'center',
| width: 180
| },
| {
| title: '累计维修金额(元)',
| key: 'door',
| align: 'center',
| width: 180
| },
| {
| title: '本期加油量(升)',
| key: 'amount',
| align: 'center',
| width: 180,
| sortable: true
| },
| {
| title: '本期加油金额(元)',
| key: 'money',
| align: 'center',
| width: 180
| },
| {
| title: '累计加油量(升)',
| key: 'allAmount',
| align: 'center',
| width: 180
| },
| {
| title: '累计加油金额(元)',
| key: 'allMoney',
| align: 'center',
| width: 180
| }
| ]
|
|