| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //顶部区域数据
- export const topList = [
- {
- id: 0,
- label: '最高温度(°C)',
- imgSrc: true,
- value: '--',
- text: '',
- },
- {
- id: 1,
- label: '最低温度(°C)',
- imgSrc: true,
- value: '--',
- text: '',
- },
- {
- id: 2,
- label: '平均温度(°C)',
- imgSrc: true,
- value: '--',
- text: '',
- },
- { id: 3, imgSrc: false, label: '预警等级', value: '正常', text: '' },
- ];
- //外因火灾-烟雾传感器table列
- export const columnsSmoke = [
- { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
- { rowIndex: 2, dataIndex: 'value', title: '值', type: '1', align: 'center' },
- { rowIndex: 4, dataIndex: 'shuju_time', title: '时间', type: '1', align: 'center' },
- ];
- //外因火灾-g光纤table列
- export const columnsFiber = [
- { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
- { rowIndex: 2, dataIndex: 'value', title: '温度(℃)', type: '1', align: 'center' },
- { rowIndex: 3, dataIndex: 'readTime', title: '时间', type: '1', align: 'center' },
- ];
|