123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- import {
- getEmergencyExpertDetails,
- getEmergencyShelterTypeDetails,
- getGasolinestationDetails,
- getHospitalDetails,
- getMiningcompanyDetails,
- getWarehouseDetails,
- getChemicalcompanyDetails,
- getSchoolDetails,
- getWaterloggedRoadsDetails,
- getShipRealtilmePositionDetails,
- getUAVDetails,
- getRainbowDetails,
- getTouristAttractionDetails,
- getConstructionSitesDetails,
- getYardSitesDetails,
- getStationInfoDetails,
- getMajorHazardSourceDetails,
- getBuildingProjectDetails,
- getChemicalWarehouseDetails,
- getMiningOperationsDetails,
- getEmergencyTransportResourcesDetails,
- getEmergencyDisasterInfoOfficerDetails,
- getMidmapDzzhDetails,
- getVehicleDetails,
- getMDPUnitDetails,
- getWaterList,
- getVideoDrowning,
- getVideoForestFire,
- getVideoDisasterPrevention, getVideoTraffic
- } from "@/api/globalMap/spatialAnalysis";
- import { getRescueTeamsInfo } from '@/api/globalMap/rescueTeam';
- export const methodList = {
- '1': getEmergencyExpertDetails,
- '2': getWarehouseDetails,
- '3': getEmergencyShelterTypeDetails,
- '4': getWaterloggedRoadsDetails,
- '5': getSchoolDetails,
- '6': getHospitalDetails,
- '7': getGasolinestationDetails,
- '8': getMiningcompanyDetails,
- // '9': getChemicalcompanyDetails,
- '10': getShipRealtilmePositionDetails,
- '11': getChemicalcompanyDetails,
- '12': getChemicalcompanyDetails,
- '13': getChemicalcompanyDetails,
- '14': getChemicalcompanyDetails,
- '15': getUAVDetails,
- '16': getRainbowDetails,
- '17': getMidmapDzzhDetails,
- '18': getMiningOperationsDetails,
- '20': getMDPUnitDetails,
- '21': getBuildingProjectDetails,
- '22': getChemicalWarehouseDetails,
- '23': getMajorHazardSourceDetails,
- '24': getStationInfoDetails,
- '25': getYardSitesDetails,
- '26': getTouristAttractionDetails,
- '27': getConstructionSitesDetails,
- '28': getEmergencyTransportResourcesDetails,
- '29': getEmergencyDisasterInfoOfficerDetails,
- '30': getVehicleDetails,
- '31': getWaterList,
- '32': getVideoDrowning,
- '33': getVideoForestFire,
- '34': getVideoDisasterPrevention,
- '35': getVideoTraffic,
- '41': getRescueTeamsInfo
- };
- export const titleList = {
- '1': '专家信息',
- '2': '物资与装备仓库信息',
- '3': '避难所信息',
- '4': '易涝点信息',
- '5': '学校信息',
- '6': '医院信息',
- '7': '加油站信息',
- '8': '非煤矿山企业信息',
- '9': '危化企业信息',
- '10': '船舶动态信息',
- '11': '危险化学品经营企业信息',
- '12': '危险化学品生产企业信息',
- '13': '危险化学品使用企业(使用许可)信息',
- '14': '化工企业(不发使用许可)信息',
- '15': '无人机信息',
- '16': '雨窝点',
- '17': '地质灾害隐患点',
- '18': '矿山施工',
- '19': '工矿商贸',
- '20': '气象灾害防御重点单位',
- '21': '建筑工程',
- '22': '储罐信息',
- '23': '重大危险源',
- '24': '客运站',
- '25': '堆场',
- '26': '旅游场所',
- '27': '在建工地',
- '28': '运输资源',
- '29': '灾害信息员',
- '30': '重点车辆信息',
- '31': '江湖河库',
- '32': '防溺水',
- '33': '森林防火',
- '34': '防灾救援',
- '35': '交通视频',
- '41': '救援队伍'
- };
|