| 123456789101112131415161718192021222324252627282930313233343536 |
- export const columns = [
- {
- title: '设备ID',
- dataIndex: 'clientId',
- key: 'createTime',
- align: 'center',
- width: 200,
- },
- {
- title: '发生时间',
- dataIndex: 'createTime',
- key: 'createTime',
- align: 'center',
- width: 200,
- },
- {
- title: '事件类型',
- dataIndex: 'eventType',
- key: 'eventType',
- align: 'center',
- // width: 200,
- },
- {
- title: '事件内容',
- dataIndex: 'info',
- key: 'info',
- align: 'center',
- width: 300,
- },
- {
- title: '备注',
- key: 'remark',
- dataIndex: 'remark',
- align: 'center',
- },
- ]
|