| 
					
				 | 
			
			
				@@ -62,7 +62,7 @@ module.exports = app => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         async getIpInfoFromApi(a_ip = '') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             console.log('a_ip', a_ip); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!a_ip) return ''; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            if (a_ip === '127.0.0.1' || a_ip === '::1') return '服务器本机访问'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            if (a_ip === '127.0.0.1' || a_ip === '::1' || a_ip.indexOf('192.168') !== -1) return '服务器本机访问'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             const { ip = '', region = '', city = '', isp = '' } = await this.sendRequest(a_ip); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             let address = ''; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             region && (address += region + '省'); 
			 |