getters.js 1.0 KB

123456789101112131415161718192021222324252627
  1. const getters = {
  2. init: state => state.app.init,
  3. isCollapse: state => state.app.isCollapse,
  4. map: state => state.app.map,
  5. platforms: state => state.app.platforms,
  6. esmInstances: state => state.app.esmInstances,
  7. esmParams: state => state.app.esmParams,
  8. properties: state => state.app.properties,
  9. platformShow: state => state.app.platformShow,
  10. platformID: state => state.app.platformID,
  11. leadPost: state => state.app.leadPost,
  12. airLine: state => state.app.airLine,
  13. taskPlan: state => state.app.taskPlan,
  14. // 通信管理
  15. netMembertable: state => state.app.netMembertable,
  16. linkVUtable: state => state.app.linkVUtable,
  17. linkJtable: state => state.app.linkJtable,
  18. linkZYtable: state => state.app.linkZYtable,
  19. // 健康管理
  20. systemFunctionality: state => state.app.systemFunctionality,
  21. threads: state => state.app.threads,
  22. sensors: state => state.app.sensors,
  23. deviceVU: state => state.app.deviceVU,
  24. deviceJ: state => state.app.deviceJ,
  25. deviceZY: state => state.app.deviceZY,
  26. }
  27. export default getters