| 
					
				 | 
			
			
				@@ -102,6 +102,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { shallowRef } from '@vue/reactivity' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { lazyAMapApiLoaderInstance } from 'vue-amap' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import Slider from './slider.vue' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import { getCookie } from "@/utils/util.js"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 Vue.use(Slider) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import Vue from 'vue' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 var infoWindow 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -531,9 +532,7 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       that.geocoder.getAddress(lnglatXY, function(status, result) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (status === 'complete' && result.info === 'OK') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           that.currentPointName = result.regeocode.formattedAddress 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-          that.initCustomMarkes( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            that.capacityNumber, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            that.statusCode+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          let content= that.statusCode+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ':' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               that.currentPointName + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               '<br/>' + 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -543,8 +542,19 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               '时间范围:' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               that.startTime + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				               ' 至 ' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-              that.endTime, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              that.endTime; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          if(getCookie('orgCode')!='wuliuyunshubu'){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            content = that.statusCode +':' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              that.currentPointName + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              '<br/>' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              '时间范围:' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              that.startTime + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              ' 至 ' + 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              that.endTime; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          that.initCustomMarkes( 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            that.capacityNumber, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            content, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             lnglatXY[0], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             lnglatXY[1] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           ) 
			 |