|
@@ -33,8 +33,8 @@ import {
|
|
|
getWaterloggedRoadsDetails,
|
|
|
getShipRealtilmePositionDetails,
|
|
|
getPeratingEenterpriseDetails,
|
|
|
- getUAVDetails
|
|
|
-} from '@/api/globalMap/spatialAnalysis';
|
|
|
+ getUAVDetails, getRainbowDetails
|
|
|
+} from "@/api/globalMap/spatialAnalysis";
|
|
|
import { pointDetailTemplate } from '@/views/globalMap/data/mapData';
|
|
|
import ElementResizeDetectorMaker from 'element-resize-detector';
|
|
|
import useAppStore from '@/store/modules/app';
|
|
@@ -163,7 +163,8 @@ const handlePointDetails = (data) => {
|
|
|
'12': getChemicalcompanyDetails,
|
|
|
'13': getChemicalcompanyDetails,
|
|
|
'14': getChemicalcompanyDetails,
|
|
|
- '15': getUAVDetails
|
|
|
+ '15': getUAVDetails,
|
|
|
+ '16': getRainbowDetails
|
|
|
};
|
|
|
let titleList = {
|
|
|
'1': '专家信息',
|
|
@@ -180,7 +181,8 @@ const handlePointDetails = (data) => {
|
|
|
'12': '危险化学品生产企业信息',
|
|
|
'13': '危险化学品使用企业(使用许可)信息',
|
|
|
'14': '化工企业(不发使用许可)信息',
|
|
|
- '15': '无人机信息'
|
|
|
+ '15': '无人机信息',
|
|
|
+ '16': '雨窝点'
|
|
|
};
|
|
|
let method = methodList[data.dataType];
|
|
|
let title = !!titleList[data.dataType] ? titleList[data.dataType] : '信息';
|