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
| export function createStatisticCountTableColumns() {
| return [
| {
| prop: 'id',
| label: 'ID',
| minWidth: 80
| },
| {
| prop: 'dayTime',
| label: '统计日期',
| minWidth: 120
| },
| {
| prop: 'count',
| label: '记录数',
| minWidth: 100
| },
| {
| prop: 'inAnfmeCount',
| label: '入库笔数',
| minWidth: 110
| },
| {
| prop: 'outAnfmeCount',
| label: '出库笔数',
| minWidth: 110
| },
| {
| prop: 'anfme',
| label: '总数量',
| minWidth: 110
| },
| {
| prop: 'inAnfme',
| label: '入库数量',
| minWidth: 110
| },
| {
| prop: 'outAnfme',
| label: '出库数量',
| minWidth: 110
| }
| ]
| }
|
|