12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- const getters = {
- topNavActive: (state) => state.home.topNavActive,
- mapPopupConfig: (state) => state.home.mapPopupConfig,
- switchConfigShow: (state) => state.globalConfig.switchConfigShow,
- switchConfig: (state) => state.globalConfig.switchConfig,
- alarmDataObj: (state) => state.globalConfig.alarmDataObj,
- drawRiskTime: (state) => state.globalConfig.drawRiskTime,
- whpID: (state) => state.home.whpID,
- yuanID: (state) => state.home.yuanID,
- alarmDataCount: (state) => state.globalConfig.alarmDataCount,
- alarmAudio: (state) => state.globalConfig.alarmAudio,//全局报警声音
- oneKey110: (state) => state.globalConfig.oneKey110,//一键110
- soundDialog: (state) => state.globalConfig.soundDialog,//防爆扩音
- soundElementDialog: (state) => state.globalConfig.soundElementDialog,//防爆扩音图层元素弹窗
- accessControlDialog: (state) => state.globalConfig.accessControlDialog,//门禁控制
- jgytControlDialog: (state) => state.globalConfig.jgytControlDialog,//激光云台
- personListDialog: (state) => state.globalConfig.personListDialog,//站内人员统计
- rtTag: (state) => state.globalConfig.RTTag,
- rtData: (state) => state.globalConfig.RTData,
- netWorkList: (state) => state.globalConfig.netWorkList,
- netWorkTree: (state) => state.globalConfig.netWorkTree,
- serverTime: (state) => state.globalConfig.serverTime,
- mapMode: (state) => state.globalConfig.mapMode, //地图模式
- openLayer: (state) => state.globalConfig.openLayer,
- stationMapLayer: (state) => state.globalConfig.stationMapLayer,
- // 弹窗相关
- visibleDialogs: (state) => state.dialog.visibleDialogs,
- videoDialogIds: (state) => state.dialog.videoDialogIds,
- blankDialogs: (state) => state.dialog.blankDialogs,
- riskDialogs: (state) => state.dialog.riskDialogs,
- oneKeyAlarmDialogs: (state) => state.dialog.oneKeyAlarmDialogs,
- alarmDetailDialog: (state) => state.dialog.alarmDetailDialog,
- layerDetailDialog: (state) => state.dialog.layerDetailDialog,
- pipeMileageDialog: (state) => state.dialog.pipeMileageDialog,//管网高程图
- //模型部分
- departmentId: (state) => state.model.departmentId,
- buildId: (state) => state.model.buildId,
- buildInfo: (state) => state.model.buildInfo,
- modelList: (state) => state.model.modelList,
- clickStation: (state) => state.model.clickStation,
- underGround: (state) => state.model.underGround,
- // 标签页
- tabPageData: (state) => state.home.tabPageData,
- //轨迹播放参数
- playTimeRange: (state) => state.historyTrack.playTimeRange,
- playSliderValue: (state) => state.historyTrack.playSliderValue,
- playMulriple: (state) => state.historyTrack.playMulriple,
- playMode: (state) => state.historyTrack.playMode,
- playerShow: (state) => state.historyTrack.playerShow,
- gatherAlarmData: (state) => state.historyTrack.gatherAlarmData,
- //最终位置
- lpplayTimeRange: (state) => state.lastPosition.playTimeRange,
- lpplaySliderValue: (state) => state.lastPosition.playSliderValue,
- lpplayMulriple: (state) => state.lastPosition.playMulriple,
- lpplayMode: (state) => state.lastPosition.playMode,
- lpplayerShow: (state) => state.lastPosition.playerShow,
- lpgatherAlarmData: (state) => state.lastPosition.gatherAlarmData,
- };
- export default getters;
|