data.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import {
  2. getEmergencyExpertDetails,
  3. getEmergencyShelterTypeDetails,
  4. getGasolinestationDetails,
  5. getHospitalDetails,
  6. getMiningcompanyDetails,
  7. getWarehouseDetails,
  8. getChemicalcompanyDetails,
  9. getSchoolDetails,
  10. getWaterloggedRoadsDetails,
  11. getShipRealtilmePositionDetails,
  12. getUAVDetails,
  13. getRainbowDetails,
  14. getTouristAttractionDetails,
  15. getConstructionSitesDetails,
  16. getYardSitesDetails,
  17. getStationInfoDetails,
  18. getMajorHazardSourceDetails,
  19. getBuildingProjectDetails,
  20. getChemicalWarehouseDetails,
  21. getMiningOperationsDetails,
  22. getEmergencyTransportResourcesDetails,
  23. getEmergencyDisasterInfoOfficerDetails,
  24. getMidmapDzzhDetails,
  25. getVehicleDetails,
  26. getMDPUnitDetails,
  27. getWaterList,
  28. getVideoDrowning,
  29. getVideoForestFire,
  30. getVideoDisasterPrevention, getVideoTraffic
  31. } from "@/api/globalMap/spatialAnalysis";
  32. import { getRescueTeamsInfo } from '@/api/globalMap/rescueTeam';
  33. export const methodList = {
  34. '1': getEmergencyExpertDetails,
  35. '2': getWarehouseDetails,
  36. '3': getEmergencyShelterTypeDetails,
  37. '4': getWaterloggedRoadsDetails,
  38. '5': getSchoolDetails,
  39. '6': getHospitalDetails,
  40. '7': getGasolinestationDetails,
  41. '8': getMiningcompanyDetails,
  42. // '9': getChemicalcompanyDetails,
  43. '10': getShipRealtilmePositionDetails,
  44. '11': getChemicalcompanyDetails,
  45. '12': getChemicalcompanyDetails,
  46. '13': getChemicalcompanyDetails,
  47. '14': getChemicalcompanyDetails,
  48. '15': getUAVDetails,
  49. '16': getRainbowDetails,
  50. '17': getMidmapDzzhDetails,
  51. '18': getMiningOperationsDetails,
  52. '20': getMDPUnitDetails,
  53. '21': getBuildingProjectDetails,
  54. '22': getChemicalWarehouseDetails,
  55. '23': getMajorHazardSourceDetails,
  56. '24': getStationInfoDetails,
  57. '25': getYardSitesDetails,
  58. '26': getTouristAttractionDetails,
  59. '27': getConstructionSitesDetails,
  60. '28': getEmergencyTransportResourcesDetails,
  61. '29': getEmergencyDisasterInfoOfficerDetails,
  62. '30': getVehicleDetails,
  63. '31': getWaterList,
  64. '32': getVideoDrowning,
  65. '33': getVideoForestFire,
  66. '34': getVideoDisasterPrevention,
  67. '35': getVideoTraffic,
  68. '41': getRescueTeamsInfo
  69. };
  70. export const titleList = {
  71. '1': '专家信息',
  72. '2': '物资与装备仓库信息',
  73. '3': '避难所信息',
  74. '4': '易涝点信息',
  75. '5': '学校信息',
  76. '6': '医院信息',
  77. '7': '加油站信息',
  78. '8': '非煤矿山企业信息',
  79. '9': '危化企业信息',
  80. '10': '船舶动态信息',
  81. '11': '危险化学品经营企业信息',
  82. '12': '危险化学品生产企业信息',
  83. '13': '危险化学品使用企业(使用许可)信息',
  84. '14': '化工企业(不发使用许可)信息',
  85. '15': '无人机信息',
  86. '16': '雨窝点',
  87. '17': '地质灾害隐患点',
  88. '18': '矿山施工',
  89. '19': '工矿商贸',
  90. '20': '气象灾害防御重点单位',
  91. '21': '建筑工程',
  92. '22': '储罐信息',
  93. '23': '重大危险源',
  94. '24': '客运站',
  95. '25': '堆场',
  96. '26': '旅游场所',
  97. '27': '在建工地',
  98. '28': '运输资源',
  99. '29': '灾害信息员',
  100. '30': '重点车辆信息',
  101. '31': '江湖河库',
  102. '32': '防溺水',
  103. '33': '森林防火',
  104. '34': '防灾救援',
  105. '35': '交通视频',
  106. '41': '救援队伍'
  107. };