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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
| 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: "01段",
| key: "amount",
| width: 130,
| sortable: true,
| align: "center",
| },
| {
| title: "02段",
| key: "mileage",
| minWidth: 100,
| sortable: true,
| align: "center",
| },
| {
| title: "03段",
| key: "oilWear",
| minWidth: 100,
| sortable: true,
| align: "center",
| },
| {
| title: "04段",
| key: "remarks",
| minWidth: 150,
| align: "center",
| },
| {
| title: "05段",
| key: "remarks",
| minWidth: 150,
| align: "center",
| },
| ]
| export const childColumn = [
| {
| title: "第一周",
| width: 118,
| align: "center",
| key: "sendDate"
| },
| ]
| export const childColumnTwo = [
| {
| title: "第一周",
| width: 118,
| align: "center",
| key: "proportion"
| },
| ]
| export const childColumnthree = [
| {
| title: "第一周",
| width: 118,
| align: "center",
| key: "proportion"
| },
| ]
| export const childData = [
| {
| one: "第一周",
| },
| {
| one: "第二周",
|
| },
| {
| one: "第三周",
| },
| {
| one: "第四周",
| },
| ]
| export const childDataTwo = [
| {
| one: "",
| },
| {
| one: "",
| },
| {
| one: "",
| },
| {
| one: "",
| },
| ]
|
|