| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import { BasicColumn } from '/@/components/Table/src/types/table';
- export const accessStatisticsColumns: BasicColumn[] = [
- {
- title: '区域',
- dataIndex: 'name',
- width: 150,
- align: 'center',
- },
- {
- title: '煤矿总数',
- dataIndex: 'mineNum',
- width: 120,
- align: 'center',
- },
- {
- title: '应接入数量',
- dataIndex: 'yjNum',
- width: 120,
- align: 'center',
- },
- {
- title: '无需接入数量',
- dataIndex: 'wxjrNum',
- width: 120,
- align: 'center',
- },
- {
- title: '接入数量',
- dataIndex: 'jrNum',
- width: 120,
- align: 'center',
- },
- {
- title: '未接入数量',
- dataIndex: 'wjNum',
- width: 120,
- align: 'center',
- },
- {
- title: '在线数量',
- dataIndex: 'zxNum',
- width: 120,
- align: 'center',
- },
- // {
- // title: '离线数量',
- // dataIndex: 'lxNum',
- // width: 120,
- // align: 'center',
- // },
- ];
|