ZhangXianQiang
2024-05-24 aa05304d221b1883d746e686f390d6f3fba598a7
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
export const tableColumn = [
  {
    title: '平台在线',
    columns: [
      {
        label: '卡口名称',
        align: 'center',
        prop: 'bayonetName',
      },
      {
        label: '卡口编号',
        align: 'center',
        prop: 'bayonetNumber'
      },
      {
        label: '过车数据量',
        align: 'center',
        prop: 'vehicleDataNumber'
      },
      {
        label: '不唯一数据',
        align: 'center',
        prop: 'notUniqueData'
      },
      {
        label: '不唯一数据量',
        align: 'center',
        prop: 'notUniqueDataNumber'
      },
    ]
  }
]