| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- import { reactive } from 'vue';
- 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 pumpMonitorData = [
- {
- title: '运行状态',
- code: 'CentrifugalPump_PU_CBStatus',
- type: 'sign',
- },
- {
- title: '启动准备',
- code: 'CentrifugalPump_PU_Ready',
- type: 'sign',
- },
- {
- title: '电压(V)',
- code: 'CentrifugalPump_PU_SysVoltage',
- type: '',
- },
- {
- title: 'A相电流(A)',
- code: 'CentrifugalPump_PU_Ia',
- type: '',
- },
- {
- title: 'B相电流(A)',
- code: 'CentrifugalPump_PU_Ib',
- type: '',
- },
- {
- title: 'C相电流(A)',
- code: 'CentrifugalPump_PU_Ic',
- type: '',
- },
- ];
- export const waterPumpData = [
- {
- title: '运行状态',
- code: 'WaterfloodPump_CBStatus',
- type: 'sign',
- },
- {
- title: '启动准备',
- code: 'WaterfloodPump_Ready',
- type: 'sign',
- },
- {
- title: '电压(V)',
- code: 'WaterfloodPump_SysVoltage',
- type: '',
- },
- ];
- export const dewateringPumpData = [
- {
- title: '运行状态',
- code: 'DewateringPump_CBStatus',
- type: 'sign',
- },
- {
- title: '启动准备',
- code: 'DewateringPump_Ready',
- type: 'sign',
- },
- {
- title: '电压(V)',
- code: 'DewateringPump_SysVoltage',
- type: '',
- },
- ];
- export const valveCtrlType = [
- {
- title: '进水阀',
- code: 'WaterInValve1',
- },
- {
- title: '排水阀',
- code: 'WaterOutValve2',
- },
- {
- title: '进气阀',
- code: 'AirInValve1',
- },
- {
- title: '排气阀',
- code: 'AirOutValve2',
- },
- ];
- export const valveCtrl = [
- {
- title: '开启',
- code: '_HMIOpen',
- },
- {
- title: '关闭',
- code: '_HMIClose',
- },
- {
- title: '停止',
- code: '_HMIStop',
- },
- {
- title: '复位',
- code: '_Reset',
- },
- ];
- export const valveState = [
- {
- title: '是否健康',
- code: '_Healthy',
- defaultValue: '-',
- },
- {
- title: '开失败',
- code: '_OpenFail',
- defaultValue: '-',
- },
- {
- title: '关失败',
- code: '_CloseFail',
- defaultValue: '-',
- },
- {
- title: '控制方式',
- code: '_CtrlMode',
- defaultValue: '-',
- },
- ];
- export const pumpCtrlType = [
- {
- title: '瓦斯泵',
- code: 'CentrifugalPump',
- },
- {
- title: '排水泵',
- code: 'DewateringPump',
- },
- ];
- export const publicPumpCtrlType = [
- {
- title: '注水泵',
- code: 'WaterfloodPump',
- },
- ];
- export const PumpCtrlItems = [
- {
- title: '启动',
- code: '_SwitchOn',
- },
- {
- title: '停止',
- code: '_SwitchOff',
- },
- {
- title: '短路测试',
- code: '_HMIShortTest',
- },
- {
- title: '漏电测试',
- code: '_HMILeakageTest',
- },
- ];
- export const stateHeader = ['设备名称', '是否健康', '开失败', '关失败', '控制方式'];
- export const modelMonitor = [
- {
- title: '泵站输入管道内工混流量(m³/min)',
- code: 'mixedTraffic',
- },
- {
- title: '泵站内瓦斯(%CH₄)',
- code: 'gas2',
- },
- {
- title: '泵站输入管道内标况流量(m³/min)',
- code: 'standardTraffic',
- },
- {
- title: '泵站输入管道内瓦斯(%CH₄)',
- code: 'gas3',
- },
- {
- title: '泵站输入管道内工混累计(m³)',
- code: 'totalGasDrainage',
- },
- {
- title: '泵站管道输出瓦斯(%CH₄)',
- code: 'gas4',
- },
- {
- title: '泵站输入管道内一氧化碳(ppm)',
- code: 'coVal',
- },
- {
- title: '泵站管路出口30米处瓦斯(%CH₄)',
- code: 'gas1',
- },
- {
- title: '泵站内温度(℃)',
- code: 'temp',
- },
- {
- title: '泵站输入管道内温度(℃)',
- code: 'pipeTemp',
- },
- ];
|