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
| export const exportColumn = [
| {
| title: "车牌号",
| key: "carNo",
| width: 100,
| align: "center",
| },
| {
| title: "加油卡号",
| key: "addOilCode",
| width: 140,
| sortable: true,
| align: "center",
| },
| {
| title: "加油日期",
| key: "addDate",
| width: 150,
| sortable: true,
| align: "center",
| },
| {
| title: "加油金额(元)",
| key: "money",
| minWidth: 100,
| sortable: true,
| align: "center",
| },
| {
| title: "加油量(升)",
| key: "amount",
| width: 130,
| sortable: true,
| align: "center",
| },
| {
| title: "行使里程(KM)",
| key: "mileage",
| minWidth: 100,
| sortable: true,
| align: "center",
| },
| {
| title: "百公里油耗(升)",
| key: "oilWear",
| minWidth: 100,
| sortable: true,
| align: "center",
| },
| {
| title: "备注",
| key: "remarks",
| minWidth: 150,
| align: "center",
| },
| ]
|
|