| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { BasicColumn } from '/@/components/Table';
- export const historyColumns: BasicColumn[] = [
- {
- title: '分站名称',
- dataIndex: 'stationName',
- key: 'stationName',
- width: 120,
- align: 'center',
- },
- {
- title: '分站id',
- dataIndex: 'stationId',
- key: 'stationId',
- width: 120,
- align: 'center',
- },
- {
- title: '供电模式',
- dataIndex: 'gdms',
- key: 'gdms',
- width: 120,
- align: 'center',
- },
- {
- title: '电池容量(%)',
- dataIndex: 'dcrl',
- key: 'dcrl',
- width: 120,
- align: 'center',
- },
- {
- title: '连接状态',
- dataIndex: 'status',
- key: 'status',
- width: 120,
- align: 'center',
- },
- {
- title: '时间',
- dataIndex: 'createTime',
- key: 'createTime',
- width: 120,
- align: 'center',
- },
- ];
|