| 
					
				 | 
			
			
				@@ -99,7 +99,9 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   methods: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     closeDialog() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-      var index = this.data_.map(item => item.websitId).indexOf(this.showData.websitId) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      var index = this.data_ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        .map(item => `${item.websitId}${item.endTime}`) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        .indexOf(`${this.showData.websitId}${this.showData.endTime}`) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       if (~index) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.data_.splice(index, 1, { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				           ...this.showData, 
			 |