|
@@ -46,11 +46,12 @@ import {
|
|
|
getEmergencyDisasterInfoOfficerDetails,
|
|
|
getMidmapDzzhDetails,
|
|
|
getVehicleDetails,
|
|
|
- getMDPUnitDetails
|
|
|
-} from '@/api/globalMap/spatialAnalysis';
|
|
|
+ getMDPUnitDetails, getWaterList, getVideoDrowning, getVideoForestFire, getVideoDisasterPrevention
|
|
|
+} from "@/api/globalMap/spatialAnalysis";
|
|
|
import { pointDetailTemplate } from '@/views/globalMap/data/mapData';
|
|
|
import ElementResizeDetectorMaker from 'element-resize-detector';
|
|
|
import useAppStore from '@/store/modules/app';
|
|
|
+import { getRoadVideoList } from "@/api/globalMap/layerAnalysis";
|
|
|
|
|
|
interface Props {
|
|
|
activeMap: string;
|
|
@@ -217,7 +218,11 @@ const handlePointDetails = (data) => {
|
|
|
'27': getConstructionSitesDetails,
|
|
|
'28': getEmergencyTransportResourcesDetails,
|
|
|
'29': getEmergencyDisasterInfoOfficerDetails,
|
|
|
- '30': getVehicleDetails
|
|
|
+ '30': getVehicleDetails,
|
|
|
+ '31': getWaterList,
|
|
|
+ '32': getVideoDrowning,
|
|
|
+ '33': getVideoForestFire,
|
|
|
+ '34': getVideoDisasterPrevention
|
|
|
};
|
|
|
let titleList = {
|
|
|
'1': '专家信息',
|
|
@@ -249,7 +254,11 @@ const handlePointDetails = (data) => {
|
|
|
'27': '在建工地',
|
|
|
'28': '运输资源',
|
|
|
'29': '灾害信息员',
|
|
|
- '30': '重点车辆信息'
|
|
|
+ '30': '重点车辆信息',
|
|
|
+ '31': '江湖河库',
|
|
|
+ '32': '防溺水',
|
|
|
+ '33': '森林防火',
|
|
|
+ '34': '防灾救援'
|
|
|
};
|
|
|
let method = methodList[data.dataType];
|
|
|
let title = !!titleList[data.dataType] ? titleList[data.dataType] : '信息';
|