bug
zhangzeli
2022-01-18 e951b168f2f9ebc94c861ce868a73e13f21d3c53
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
export const exportColumn = [
  {
    title: "送货线路",
    key: "areaName",
    width: 130,
  },
  {
    title: "车牌号",
    key: "carNo",
    width: 120,
  },
  {
    title: "加油卡号",
    key: "addOilCode",
    width: 140,
    sortable: true,
  },
  {
    title: "起始里程",
    key: "beginMileage",
    width: 130,
  },
  {
    title: "期末里程",
    key: "endMileage",
    width: 130,
  },
  {
    title: "月行驶里程",
    key: "mileage",
    width: 130,
  },
  {
    title: "月油耗",
    key: "oilWear",
    width: 130,
  },
  {
    title: "百公里油耗",
    key: "oil",
    width: 130,
  },
  {
    title: "驾驶员",
    key: "nickName",
    width: 120,
  },
  {
    title: "月加油金额",
    key: "money",
    width: 120,
  }
]