import { ref } from 'vue'; export const bottomBtnList = ref([ { text: '监控界面', value: 'nitrogenMonitor', isHover: false, }, { text: '关键节点监测', value: 'nitrogenNode', isHover: false, }, { text: '实时曲线', value: 'nitrogenEcharts', isHover: false, }, { text: '压风机历史记录', value: 'nitrogenHistory', isHover: false, }, { text: '操作历史记录', value: 'nitrogenHandleHistory', isHover: false, }, { text: '故障诊断历史记录', value: 'nitrogenWarningHistory', isHover: false, }, ]); export const monitorDataGroupNum1 = [1, 2, 3]; export const monitorDataGroupNum2 = [4, 5]; export const monitorDataGroupNum3 = [1,2,3,4]; export const monitorDataGroupNum = ref(3) export const airCompressorState = ref([ { id: '', compressRunSigF1: false, controlModel: false, }, { id: '', compressRunSigF1: false, controlModel: false, }, { id: '', compressRunSigF1: false, controlModel: false, }, { id: '', compressRunSigF1: false, controlModel: false, }, ]); export const showMonitorData = [ { PRE_CPR_ExhaustPre: '排气压力(bar)', PRE_CPR_LoadPre: '加载压力(bar)', }, { PRE_CPR_UnLoadPre: '卸载压力(bar)', PRE_CPR_LoadTime: '加载时间(h)', }, { PRE_MOT_TotalRunTime: '总运行时间(h)', }, ]; export const monitorData = ref( new Array(4).fill({ strName: '空压机', compressGroupName: '', compressExhaustPressF1: '-', compressSeparatePressF1: '-', compressHostTempF1: '-', compressCrewTempF1: '-', compressRunTimeF1: '-', controlModel: 'LOC', }) ); // dataInfo: { // controlModel: false // }; // videoUrl: '', // isDestroyVideo: false, // navList: [ // { // title: '监控界面', // pathName: 'nitrogen_page_lh' // }, // // { // // title: '关键节点监测', // // pathName: 'critical_node' // // }, // { // title: '实时曲线', // pathName: 'yfj_monitor_echarts_cy' // }, // { // title: '压风机历史记录', // pathName: 'yfj_history' // }, // { // title: '操作历史记录', // pathName: 'yfj_handler_history' // }, // { // title: '故障诊断历史记录', // pathName: 'yfj_faultRecord' // } // ], // kyjMonitorDataKey: new Map( // [ // ['压力', 'pressure'], // ['温度', 'temp'], // ] // ),