| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import { reactive } from 'vue';
- import { BasicColumn } from '/@/components/Table';
- export const warningConfig = reactive({
- header: ['设备名称', '预警信息', '时间'],
- data: [
- ['火焰6', '严重报警', '03-05'],
- ['测点43', '一般预警', '03-05'],
- ['CO23', '一般预警', '03-05'],
- ['测点6', '超高预警', '03-05'],
- ['测点65', '超高预警', '03-05'],
- ['温度4', '一般预警', '03-05'],
- ['测点61', '一般预警', '03-05'],
- ['测点87', '一般信息', '03-05'],
- ],
- index: false,
- // columnWidth: [150, 80, 150, 150],
- headerBGC: '#3d9dd45d',
- oddRowBGC: '#009acd10',
- evenRowBGC: '#009acd05',
- align: ['center', 'center', 'center'],
- });
- export const sensorColumns: BasicColumn[] = [
- {
- title: '名称',
- dataIndex: 'strname',
- width: 100,
- align: 'center',
- },
- {
- title: '实时值',
- dataIndex: 'smokeval',
- width: 80,
- align: 'center',
- },
- {
- title: '报警',
- dataIndex: 'warnFlag',
- width: 100,
- align: 'center',
- },
- ];
- export const dustColumns: BasicColumn[] = [
- {
- title: '名称',
- dataIndex: 'strname',
- width: 100,
- align: 'center',
- },
- {
- title: '链接状态',
- dataIndex: 'netStatus',
- width: 80,
- align: 'center',
- },
- {
- title: '启停',
- dataIndex: 'action',
- width: 100,
- align: 'center',
- },
- ];
- export const windowParam = [
- {
- title: '前窗面积',
- code: 'valve1Val',
- inputNum: 0,
- },
- {
- title: '后窗面积',
- code: 'valve2Val',
- inputNum: 0,
- },
- ];
|