| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import { BasicColumn } from '/@/components/Table';
- export const historyColumns: BasicColumn[] = [
- // {
- // title: '序号',
- // width: 60,
- // align: 'center',
- // customRender: ({ index }: { index: number }) => `${index + 1}`
- // },
- {
- title: '安装位置',
- dataIndex: 'strinstallpos',
- key: 'strinstallpos',
- align: 'center',
- },
- {
- title: 'Ip地址',
- dataIndex: 'stripC',
- key: 'stripC',
- width: 90,
- align: 'center',
- },
- {
- title: '监测值',
- dataIndex: 'valueJc',
- key: 'valueJc',
- align: 'center',
- },
- {
- title: '供电模式',
- dataIndex: 'gdmsC',
- key: 'gdmsC',
- width: 90,
- align: 'center',
- },
- {
- title: '电池容量(%)',
- dataIndex: 'dcrl',
- key: 'dcrl',
- width: 90,
- align: 'center',
- },
- {
- title: '启用状态',
- dataIndex: 'linkIdC',
- key: 'linkIdC',
- width: 80,
- align: 'center',
- },
- {
- title: '通讯状态',
- dataIndex: 'linkstatusC',
- key: 'linkstatusC',
- width: 80,
- align: 'center',
- },
- // {
- // title: '时间',
- // dataIndex: 'updateTime',
- // key: 'updateTime',
- // width: 120,
- // align: 'center',
- // },
- {
- title: '操作',
- dataIndex: 'action',
- width: 220,
- align: 'center',
- slots: { customRender: 'action' },
- },
- ];
|