|
@@ -0,0 +1,491 @@
|
|
|
|
+export const monitorDataGroupArr = [[1, 2, 3, 4]];
|
|
|
|
+export const modelMonitor = [
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '空压机',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ key: 'PRE',
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: '加载压力',
|
|
|
|
+ code: '_CPR_LoadPre',
|
|
|
|
+ unit: 'MPa',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '卸载压力',
|
|
|
|
+ code: '_CPR_UnLoadPre',
|
|
|
|
+ unit: 'MPa',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `机头温度`,
|
|
|
|
+ code: `_CPR_HeadTemp`,
|
|
|
|
+ unit: '℃',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `冷却温度`,
|
|
|
|
+ code: `_CPR_CoolantTemp`,
|
|
|
|
+ unit: '℃',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `排气温度`,
|
|
|
|
+ code: `_CPR_ExhaustTemp`,
|
|
|
|
+ unit: '℃',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '加载时间',
|
|
|
|
+ code: '_CPR_LoadTime',
|
|
|
|
+ unit: 'h',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '排气压力',
|
|
|
|
+ code: '_CPR_ExhaustPre',
|
|
|
|
+ unit: 'MPa',
|
|
|
|
+ child: [],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ code: 'signal',
|
|
|
|
+ child: [
|
|
|
|
+ {
|
|
|
|
+ title: `加载卸载`,
|
|
|
|
+ code: `_CPR_LoadorUnload`,
|
|
|
|
+ isWaring: false,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `状态`,
|
|
|
|
+ code: `_Status`,
|
|
|
|
+ isWaring: false,
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '储气罐',
|
|
|
|
+ key: 'PRE',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ hideInGroup: [],
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: '风包温度',
|
|
|
|
+ code: '_VLS_Temp',
|
|
|
|
+ unit: '℃',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+];
|
|
|
|
+export const totalData = [
|
|
|
|
+ {
|
|
|
|
+ title: '总出风管压力',
|
|
|
|
+ code: 'PRE_ExitPressure',
|
|
|
|
+ unit: 'bar',
|
|
|
|
+ },
|
|
|
|
+];
|
|
|
|
+export const leftMonitor = [
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '压风机1',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ title: '',
|
|
|
|
+ childTitle: ['1#压风机'],
|
|
|
|
+ key: ['PRE1'],
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号1`,
|
|
|
|
+ code: `_FaultSignal1`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号2`,
|
|
|
|
+ code: `_FaultSignal2`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `A相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseATempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `B相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseBTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `C相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseCTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机启动失败',
|
|
|
|
+ code: '_MOT_StartFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机停止失败',
|
|
|
|
+ code: '_MOT_StopFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机运行返回',
|
|
|
|
+ code: '_MOT_RunReturn',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '综保故障',
|
|
|
|
+ code: '_MOT_CompProtFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '接地故障',
|
|
|
|
+ code: '_MOT_EarthFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '过流故障',
|
|
|
|
+ code: '_MOT_OverCurrentFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `主机本机`,
|
|
|
|
+ code: `_HostorLoc`,
|
|
|
|
+ type: 'signal',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '总运行时间(h)',
|
|
|
|
+ code: '_MOT_TotalRunTime',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '有功功率(kW)',
|
|
|
|
+ code: '_MOT_Power',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'A相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseATemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'B相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseBTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'C相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseCTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '压风机2',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ title: '',
|
|
|
|
+ childTitle: ['2#压风机'],
|
|
|
|
+ key: ['PRE2'],
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号1`,
|
|
|
|
+ code: `_FaultSignal1`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号2`,
|
|
|
|
+ code: `_FaultSignal2`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `A相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseATempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `B相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseBTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `C相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseCTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机启动失败',
|
|
|
|
+ code: '_MOT_StartFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机停止失败',
|
|
|
|
+ code: '_MOT_StopFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机运行返回',
|
|
|
|
+ code: '_MOT_RunReturn',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '综保故障',
|
|
|
|
+ code: '_MOT_CompProtFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '接地故障',
|
|
|
|
+ code: '_MOT_EarthFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '过流故障',
|
|
|
|
+ code: '_MOT_OverCurrentFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `主机本机`,
|
|
|
|
+ code: `_HostorLoc`,
|
|
|
|
+ type: 'signal',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '总运行时间(h)',
|
|
|
|
+ code: '_MOT_TotalRunTime',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '有功功率(kW)',
|
|
|
|
+ code: '_MOT_Power',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'A相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseATemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'B相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseBTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'C相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseCTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+];
|
|
|
|
+
|
|
|
|
+export const rightMonitor = [
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '压风机3',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ title: '',
|
|
|
|
+ childTitle: ['3#压风机'],
|
|
|
|
+ key: ['PRE3'],
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号1`,
|
|
|
|
+ code: `_FaultSignal1`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号2`,
|
|
|
|
+ code: `_FaultSignal2`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `A相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseATempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `B相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseBTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `C相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseCTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机启动失败',
|
|
|
|
+ code: '_MOT_StartFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机停止失败',
|
|
|
|
+ code: '_MOT_StopFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机运行返回',
|
|
|
|
+ code: '_MOT_RunReturn',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '综保故障',
|
|
|
|
+ code: '_MOT_CompProtFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '接地故障',
|
|
|
|
+ code: '_MOT_EarthFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '过流故障',
|
|
|
|
+ code: '_MOT_OverCurrentFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `主机本机`,
|
|
|
|
+ code: `_HostorLoc`,
|
|
|
|
+ type: 'signal',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '总运行时间(h)',
|
|
|
|
+ code: '_MOT_TotalRunTime',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '有功功率(kW)',
|
|
|
|
+ code: '_MOT_Power',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'A相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseATemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'B相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseBTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'C相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseCTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'list',
|
|
|
|
+ title: '压风机4',
|
|
|
|
+ stateHeader: [],
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ title: '',
|
|
|
|
+ childTitle: ['4#压风机'],
|
|
|
|
+ key: ['PRE4'],
|
|
|
|
+ list: [
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号1`,
|
|
|
|
+ code: `_FaultSignal1`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `故障信号2`,
|
|
|
|
+ code: `_FaultSignal2`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `A相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseATempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `B相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseBTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `C相绕组超温`,
|
|
|
|
+ code: `_MOT_PhaseCTempAlarm`,
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机启动失败',
|
|
|
|
+ code: '_MOT_StartFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机停止失败',
|
|
|
|
+ code: '_MOT_StopFail',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '电机运行返回',
|
|
|
|
+ code: '_MOT_RunReturn',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '综保故障',
|
|
|
|
+ code: '_MOT_CompProtFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '接地故障',
|
|
|
|
+ code: '_MOT_EarthFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '过流故障',
|
|
|
|
+ code: '_MOT_OverCurrentFault',
|
|
|
|
+ type: 'warning',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: `主机本机`,
|
|
|
|
+ code: `_HostorLoc`,
|
|
|
|
+ type: 'signal',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '总运行时间(h)',
|
|
|
|
+ code: '_MOT_TotalRunTime',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: '有功功率(kW)',
|
|
|
|
+ code: '_MOT_Power',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'A相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseATemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'B相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseBTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ title: 'C相绕组温度(℃)',
|
|
|
|
+ code: '_MOT_PhaseCTemp',
|
|
|
|
+ type: '',
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+];
|
|
|
|
+
|
|
|
|
+export const detailCtrl = [];
|