Browse Source

1. 胡桃峪压风页面优化

hongrunxia 8 months ago
parent
commit
a400985596

+ 17 - 2
src/views/vent/monitorManager/nitrogen/components/nitrogenHome1.vue

@@ -46,7 +46,7 @@
           <fourBorderBg v-if="getShowModelMonitor(deviceProperty.modelMonitor[1], groupNum)" :class="`cqg${groupNum}`" :id="`cqgMonitor${groupNum}`">
             <div class="title">{{ deviceProperty.modelMonitor[1].title + (index + 1) }}</div>
             <template v-for="(cqgMonitor, cqgMonitorIndex) in deviceProperty.modelMonitor[1].list" :key="cqgMonitorIndex">
-              <div class="monitor-item">
+              <div v-if="cqgMonitor.code !== 'signal'" class="monitor-item">
                 <span class="monitor-title">{{ cqgMonitor.title }}:</span>
                 <span class="monitor-val"
                   ><span class="val">{{
@@ -57,6 +57,21 @@
                   ><span class="unit">{{ cqgMonitor.unit }}</span></span
                 >
               </div>
+              <div v-else class="signal-item">
+                <div class="signal" v-for="(signal, childIndex) in cqgMonitor.child" :key="childIndex">
+                  <span class="monitor-title">{{ signal.title }}</span>
+                  <span
+                    :class="{
+                      'signal-round': true,
+                      'signal-round-run':
+                        signal.title != '故障信号' && selectData[`${deviceProperty.modelMonitor[0].key}${groupNum}${cqgMonitor.code}`] == '1',
+                      'signal-round-warning':
+                        signal.title == '故障信号' && selectData[`${deviceProperty.modelMonitor[0].key}${groupNum}${cqgMonitor.code}`] == '1',
+                      'signal-round-gry': selectData[`${deviceProperty.modelMonitor[0].key}${groupNum}${cqgMonitor.code}`] != '1',
+                    }"
+                  ></span>
+                </div>
+              </div>
             </template>
           </fourBorderBg>
         </div>
@@ -172,7 +187,7 @@
         </div>
       </div>
     </div>
-    <div ref="playerRef" class="player-box" :class="{ 'sw-player': sysOrgCode == 'sdmtjtswmk' }"></div>
+    <div ref="playerRef" class="player-box" :class="{ 'sw-player': sysOrgCode == 'sdmtjtswmk' || sysOrgCode == 'hnqymdktymk' }"></div>
   </div>
 </template>
 

+ 3 - 3
src/views/vent/monitorManager/nitrogen/nitrogen.data.1.ts

@@ -63,7 +63,7 @@ export const bottomBtnList = ref([
 
 export async function getMonitorData() {
   const { sysOrgCode } = useGlobSetting();
-  // const sysOrgCode = 'sdmtjtbetmk';
+  // const sysOrgCode = 'hnqymdktymk';
   switch (sysOrgCode) {
     case 'yjmdsankuang': // 窑街三矿
       return await import('./nitrogen.dataYJ');
@@ -92,8 +92,8 @@ export async function getMonitorData() {
       return await import('./nitrogen.data.wlml');
     case 'yjmdjhmk': // 窑街金河矿
       return await import('./nitrogen.data.jh');
-    case 'hnqymdktymk'://核桃峪
-    return await import('./nitrogen.data.hty');
+    case 'hnqymdktymk': //核桃峪
+      return await import('./nitrogen.data.hty');
     default: //默认
       // return await import('./nitrogen.dataCc_2');
       return await import('./nitrogen.data.hty');

+ 907 - 1006
src/views/vent/monitorManager/nitrogen/nitrogen.data.hty.ts

@@ -1,1027 +1,928 @@
 export const monitorDataGroupArr = [[1, 2, 3, 4, 5, 6]];
 export const modelMonitor = [
-    {
-        type: 'list',
-        title: '空压机',
-        stateHeader: [],
-        key: 'PRE',
-        list: [
-            {
-                title: '累计运行时间_天',
-                code: '_TotalRunTime_Day',
-                unit: 'day',
-                child: [],
-            },
-            {
-                title: '累计运行时间_时',
-                code: '_TotalRunTime_Hour',
-                unit: 'h',
-                child: [],
-            },
-            {
-                title: '累计运行时间_分',
-                code: '_TotalRunTime_Min',
-                unit: 'minutes',
-                child: [],
-            },
-            {
-                title: '电压',
-                code: '_Voltage',
-                unit: 'V',
-                child: [],
-            },
-            {
-                title: '电流',
-                code: '_Current',
-                unit: 'A',
-                child: [],
-            },
-         
-            {
-                title: '主机温度',
-                code: '_MainUnitTemp',
-                unit: '℃',
-                child: [],
-            },
-            {
-                title: '回水温度',
-                code: '_ReturnWaterTemp',
-                unit: '℃',
-                child: [],
-            },
-            {
-                title: '排气压力',
-                code: '_ExhaustPressure',
-                unit: 'MPa',
-                child: [],
-            },
-            {
-                title: '故障次数',
-                code: '_FaultCount',
-                unit: '',
-                child: [],
-            },
-            {
-                title: '启动次数',
-                code: '_StartCount',
-                unit: '',
-                child: [],
-            },
-            {
-                title: '油分油位',
-                code: '_OilSeparatorLevel',
-                unit: '',
-                child: [],
-            },
-
-            {
-                code: 'signal',
-                child: [
-                    {
-                        title: `运行反馈`,
-                        code: `_Blower1_RunFeedback`,
-                        isWaring: false,
-                    },
-                    {
-                        title: `故障反馈`,
-                        code: `_Blower1_FaultFeedback`,
-                        isWaring: false,
-                    },
-                ],
-            },
+  {
+    type: 'list',
+    title: '空压机',
+    stateHeader: [],
+    key: 'PRE',
+    list: [
+      {
+        title: '主机温度',
+        code: '_MainUnitTemp',
+        unit: '℃',
+        child: [],
+      },
+      {
+        title: '回水温度',
+        code: '_ReturnWaterTemp',
+        unit: '℃',
+        child: [],
+      },
+      {
+        title: '排气压力',
+        code: '_ExhaustPressure',
+        unit: 'MPa',
+        child: [],
+      },
+      {
+        title: '故障次数',
+        code: '_FaultCount',
+        unit: '',
+        child: [],
+      },
+      {
+        title: '启动次数',
+        code: '_StartCount',
+        unit: '',
+        child: [],
+      },
+      {
+        title: '油分油位',
+        code: '_OilSeparatorLevel',
+        unit: '',
+        child: [],
+      },
+      {
+        title: '累计运行时间',
+        code: '_TotalRunTime_Day',
+        unit: 'd',
+        child: [],
+      },
+      {
+        title: '电压',
+        code: '_Voltage',
+        unit: 'V',
+        child: [],
+      },
+      {
+        title: '电流',
+        code: '_Current',
+        unit: 'A',
+        child: [],
+      },
+      {
+        code: 'signal',
+        child: [
+          {
+            title: `运行反馈`,
+            code: `_Blower1_RunFeedback`,
+            isWaring: false,
+          },
+          {
+            title: `故障反馈`,
+            code: `_Blower1_FaultFeedback`,
+            isWaring: false,
+          },
         ],
-    },
-    {
-        type: 'list',
-        title: '储气罐',
-        key: 'PRE',
-        stateHeader: [],
-        hideInGroup: [],
-        list: [
-            {
-                title: '储气温度',
-                code: '_StorageTemp',
-                unit: '℃',
-            },
-            {
-                title: '风包压力',
-                code: '_PackagePressure',
-                unit: 'MPa',
-            },
+      },
+    ],
+  },
+  {
+    type: 'list',
+    title: '储气罐',
+    key: 'PRE',
+    stateHeader: [],
+    hideInGroup: [],
+    list: [
+      {
+        title: '储气温度',
+        code: '_StorageTemp',
+        unit: '℃',
+      },
+      {
+        title: '风包压力',
+        code: '_PackagePressure',
+        unit: 'MPa',
+      },
+      {
+        code: 'signal',
+        child: [
+          {
+            title: `风包温度高报警`,
+            code: `_Blower_HighTemp`,
+            isWaring: true,
+          },
+          {
+            title: `风包温度低报警`,
+            code: `_Blower_LowTemp`,
+            isWaring: true,
+          },
+        ],
+      },
+      {
+        code: 'signal',
+        child: [
+          {
+            title: `风包压力高报警`,
+            code: `_Blower_HighPressure`,
+            isWaring: true,
+          },
+          {
+            title: `风包压力低报警`,
+            code: `_Blower_LowPressure`,
+            isWaring: true,
+          },
         ],
-    },
+      },
+    ],
+  },
 ];
 export const totalData = [
-    {
-        title: '总管路瞬时流量',
-        code: 'MainInstantFlow',
-        unit: 'm³/min',
-    },
-    {
-        title: '总管路累计流量',
-        code: 'MainTotalFlow',
-        unit: 'm³/min',
-    },
+  {
+    title: '总管路瞬时流量',
+    code: 'MainInstantFlow',
+    unit: 'm³/min',
+  },
+  {
+    title: '总管路累计流量',
+    code: 'MainTotalFlow',
+    unit: 'm³/min',
+  },
 ];
 export const leftMonitor = [
-    {
-        type: 'list',
-        title: '压风机1',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['1#压风机'],
-                key: ['PRE1'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower1_TempHighAlarm`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower1_TempLowAlarm`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower1_PressureHighAlarm`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: '温度传感器保护投退',
-                        code: '_TemperatureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: '前轴振动传感器保护投退',
-                        code: '_FrontVibrationSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: '后轴振动传感器保护投退',
-                        code: '_RearVibrationSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: '流量传感器保护投退',
-                        code: '_FlowSensor_Protect',
-                        type: 'warning',
-                    },
+  {
+    type: 'list',
+    title: '压风机1',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['1#压风机'],
+        key: ['PRE1'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
 
-                    {
-                        title: '启动',
-                        code: '_AirCompressor_Start',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止',
-                        code: '_AirCompressor_Stop',
-                        type: 'warning',
-                    },
-                    {
-                        title: '复位',
-                        code: '_AirCompressor_Reset',
-                        type: 'warning',
-                    },
-                    {
-                        title: '加载',
-                        code: '_AirCompressor_Load',
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动`,
-                        code: `_FrontVibration`,
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
-    {
-        type: 'list',
-        title: '压风机2',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['2#压风机'],
-                key: ['PRE2'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower_HighTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower_LowTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower_HighPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: `温度传感器保护投退`,
-                        code: `_TemperatureSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `前轴振动传感器保护投退`,
-                        code: `_FrontVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `后轴振动传感器保护投退`,
-                        code: `_RearVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `流量传感器保护投退`,
-                        code: `_FlowSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `启动`,
-                        code: `_AirCompressor_Start`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `停止`,
-                        code: `_AirCompressor_Stop`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `复位`,
-                        code: `_AirCompressor_Reset`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `加载`,
-                        code: `_AirCompressor_Load`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动',
-                        code: '_FrontVibration',
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+      },
+    ],
+  },
+  {
+    type: 'list',
+    title: '压风机2',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['2#压风机'],
+        key: ['PRE2'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
+
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
-    {
-        type: 'list',
-        title: '压风机3',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['3#压风机'],
-                key: ['PRE3'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower_HighTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower_LowTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower_HighPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: `温度传感器保护投退`,
-                        code: `_TemperatureSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `前轴振动传感器保护投退`,
-                        code: `_FrontVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `后轴振动传感器保护投退`,
-                        code: `_RearVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `流量传感器保护投退`,
-                        code: `_FlowSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `启动`,
-                        code: `_AirCompressor_Start`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `停止`,
-                        code: `_AirCompressor_Stop`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `复位`,
-                        code: `_AirCompressor_Reset`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `加载`,
-                        code: `_AirCompressor_Load`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动',
-                        code: '_FrontVibration',
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+      },
+    ],
+  },
+  {
+    type: 'list',
+    title: '压风机3',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['3#压风机'],
+        key: ['PRE3'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
+
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
+      },
+    ],
+  },
 ];
 
 export const rightMonitor = [
-    {
-        type: 'list',
-        title: '压风机4',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['4#压风机'],
-                key: ['PRE4'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower_HighTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower_LowTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower_HighPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: `温度传感器保护投退`,
-                        code: `_TemperatureSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `前轴振动传感器保护投退`,
-                        code: `_FrontVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `后轴振动传感器保护投退`,
-                        code: `_RearVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `流量传感器保护投退`,
-                        code: `_FlowSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `启动`,
-                        code: `_AirCompressor_Start`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `停止`,
-                        code: `_AirCompressor_Stop`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `复位`,
-                        code: `_AirCompressor_Reset`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `加载`,
-                        code: `_AirCompressor_Load`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动',
-                        code: '_FrontVibration',
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+  {
+    type: 'list',
+    title: '压风机4',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['4#压风机'],
+        key: ['PRE4'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
+
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
-    {
-        type: 'list',
-        title: '压风机5',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['5#压风机'],
-                key: ['PRE5'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower_HighTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower_LowTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower_HighPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: `温度传感器保护投退`,
-                        code: `_TemperatureSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `前轴振动传感器保护投退`,
-                        code: `_FrontVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `后轴振动传感器保护投退`,
-                        code: `_RearVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `流量传感器保护投退`,
-                        code: `_FlowSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `启动`,
-                        code: `_AirCompressor_Start`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `停止`,
-                        code: `_AirCompressor_Stop`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `复位`,
-                        code: `_AirCompressor_Reset`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `加载`,
-                        code: `_AirCompressor_Load`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动',
-                        code: '_FrontVibration',
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+      },
+    ],
+  },
+  {
+    type: 'list',
+    title: '压风机5',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['5#压风机'],
+        key: ['PRE5'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
+
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
-    {
-        type: 'list',
-        title: '压风机6',
-        stateHeader: [],
-        children: [
-            {
-                title: '',
-                childTitle: ['6#压风机'],
-                key: ['PRE6'],
-                list: [
-                    {
-                        title: `风包温度高报警`,
-                        code: `_Blower_HighTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包温度低报警`,
-                        code: `_Blower_LowTemp`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力高报警`,
-                        code: `_Blower_HighPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `风包压力低报警`,
-                        code: `_Blower_LowPressure`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `电机前轴振动高报警`,
-                        code: `_Motor_FrontVibHigh`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动低报警',
-                        code: '_Motor_FrontVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动高报警',
-                        code: '_Motor_RearVibHigh',
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机后轴振动低报警',
-                        code: '_Motor_RearVibLow',
-                        type: 'warning',
-                    },
-                    {
-                        title: '启动超时报警',
-                        code: '_Blower_StartTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '停止超时报警',
-                        code: '_Blower_StopTimeout',
-                        type: 'warning',
-                    },
-                    {
-                        title: '压力传感器保护投退',
-                        code: '_PressureSensor_Protect',
-                        type: 'warning',
-                    },
-                    {
-                        title: `温度传感器保护投退`,
-                        code: `_TemperatureSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `前轴振动传感器保护投退`,
-                        code: `_FrontVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `后轴振动传感器保护投退`,
-                        code: `_RearVibrationSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `流量传感器保护投退`,
-                        code: `_FlowSensor_Protect`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `启动`,
-                        code: `_AirCompressor_Start`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `停止`,
-                        code: `_AirCompressor_Stop`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `复位`,
-                        code: `_AirCompressor_Reset`,
-                        type: 'warning',
-                    },
-                    {
-                        title: `加载`,
-                        code: `_AirCompressor_Load`,
-                        type: 'warning',
-                    },
-                    {
-                        title: '电机前轴振动',
-                        code: '_FrontVibration',
-                        type: '',
-                    },
-                    {
-                        title: '电机前轴温度',
-                        code: '_FrontTemp',
-                        type: '',
-                    },
-                    {
-                        title: '回水管流量',
-                        code: '_ReturnFlow',
-                        type: '',
-                    },
-                    {
-                        title: '电压高报警值',
-                        code: '_HighVoltageAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '电流高报警值',
-                        code: '_HighCurrentAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '排气温度高报警值',
-                        code: '_ExhaustTempHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '振动值高报警值',
-                        code: '_VibrationHighAlarmSetting',
-                        type: '',
-                    },
-                    {
-                        title: '流量高报警值',
-                        code: '_FlowHighAlarmSetting',
-                        type: '',
-                    },
-                ],
-            },
+      },
+    ],
+  },
+  {
+    type: 'list',
+    title: '压风机6',
+    stateHeader: [],
+    children: [
+      {
+        title: '',
+        childTitle: ['6#压风机'],
+        key: ['PRE6'],
+        list: [
+          {
+            title: '启动',
+            code: '_AirCompressor_Start',
+            type: 'sign',
+          },
+          {
+            title: '停止',
+            code: '_AirCompressor_Stop',
+            type: 'sign',
+          },
+          {
+            title: '复位',
+            code: '_AirCompressor_Reset',
+            type: 'sign',
+          },
+          {
+            title: '加载',
+            code: '_AirCompressor_Load',
+            type: 'warning',
+          },
+          {
+            title: `电机前轴振动`,
+            code: `_FrontVibration`,
+            type: '',
+          },
+          {
+            title: '电机前轴温度',
+            code: '_FrontTemp',
+            type: '',
+          },
+          {
+            title: '回水管流量',
+            code: '_ReturnFlow',
+            type: '',
+          },
+          {
+            title: '启动超时报警',
+            code: '_Blower_StartTimeout',
+            type: 'warning',
+          },
+          {
+            title: '停止超时报警',
+            code: '_Blower_StopTimeout',
+            type: 'warning',
+          },
+          {
+            title: `前轴振动高报警`,
+            code: `_Motor_FrontVibHigh`,
+            type: 'warning',
+          },
+          {
+            title: '前轴振动低报警',
+            code: '_Motor_FrontVibLow',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动高报警',
+            code: '_Motor_RearVibHigh',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动低报警',
+            code: '_Motor_RearVibLow',
+            type: 'warning',
+          },
+          {
+            title: '压力传感器保护投退',
+            code: '_PressureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '温度传感器保护投退',
+            code: '_TemperatureSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '前轴振动传感器保护投退',
+            code: '_FrontVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '后轴振动传感器保护投退',
+            code: '_RearVibrationSensor_Protect',
+            type: 'warning',
+          },
+          {
+            title: '流量传感器保护投退',
+            code: '_FlowSensor_Protect',
+            type: 'warning',
+          },
+
+          {
+            title: '电压高报警值',
+            code: '_HighVoltageAlarmSetting',
+            type: '',
+          },
+          {
+            title: '电流高报警值',
+            code: '_HighCurrentAlarmSetting',
+            type: '',
+          },
+          {
+            title: '排气温度高报警值',
+            code: '_ExhaustTempHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '振动值高报警值',
+            code: '_VibrationHighAlarmSetting',
+            type: '',
+          },
+          {
+            title: '流量高报警值',
+            code: '_FlowHighAlarmSetting',
+            type: '',
+          },
         ],
-    },
+      },
+    ],
+  },
 ];
 
 export const detailCtrl = [];

+ 2 - 0
src/views/vent/monitorManager/nitrogen/nitrogen.dishang.threejs.ts

@@ -158,6 +158,7 @@ class Nitrogen {
             if (i == 2) compressorMonitorCSS3D.position.set(-0.89, 0.31, 0.08);
             if (i == 3) compressorMonitorCSS3D.position.set(-0.89, 0.31, 0.12);
             if (i == 4) compressorMonitorCSS3D.position.set(-0.89, 0.31, 0.16);
+            if (i == 5) compressorMonitorCSS3D.position.set(-0.89, 0.31, 0.2);
 
             cssGroup.add(compressorMonitorCSS3D);
           }
@@ -173,6 +174,7 @@ class Nitrogen {
             if (i == 2) cqgMonitorCSS3D.position.set(1.24, 0.31, 0.08);
             if (i == 3) cqgMonitorCSS3D.position.set(1.24, 0.31, 0.12);
             if (i == 4) cqgMonitorCSS3D.position.set(1.24, 0.31, 0.16);
+            if (i == 5) cqgMonitorCSS3D.position.set(1.24, 0.31, 0.2);
             if (monitorDataGroup.length > 4) {
               cqgMonitorCSS3D.scale.set(0.0035, 0.0035, 0.0035);
             } else {

+ 5 - 1
src/views/vent/monitorManager/nitrogen/nitrogen.threejs.ts

@@ -88,7 +88,11 @@ export const setModelType = (modalTypeName) => {
     const oldControlsPosition = { x: 0, y: 0, z: 0 };
     let newCameraPosition = { x: 0, y: 0, z: 0 },
       newControlsPosition = { x: 0, y: 0, z: 0 };
-    if (group?.children.length == 6) {
+    debugger;
+    if (group?.children.length == 7) {
+      newCameraPosition = { x: -150.124016817707, y: 73.73471355835353, z: 6.421728063746754 };
+      newControlsPosition = { x: -3.0365054180427618, y: -14.182088742518898, z: 6.336141914568813 };
+    } else if (group?.children.length == 6) {
       newCameraPosition = { x: -107.33215442283758, y: 44.57609039633937, z: 2.0459979417299334 };
       newControlsPosition = { x: -4.615459422837561, y: -16.819491603660634, z: 1.9862299417299336 };
     } else if (group?.children.length == 5) {