|  | @@ -101,20 +101,7 @@ $(function() {
 | 
	
		
			
				|  |  |          $('button[closeRefresh]').attr('currentPage',currentPage);
 | 
	
		
			
				|  |  |          $('button[closeRefresh]').attr('parameter',parameter);
 | 
	
		
			
				|  |  |          
 | 
	
		
			
				|  |  | -        $.ajax({
 | 
	
		
			
				|  |  | -            cache :false,
 | 
	
		
			
				|  |  | -            type: 'get',
 | 
	
		
			
				|  |  | -            url: '/cloud/curing/ajax/getCuringPage/'+currentPage+parameter,
 | 
	
		
			
				|  |  | -            dataType: 'json',
 | 
	
		
			
				|  |  | -            success: function(data) {
 | 
	
		
			
				|  |  | -                if (data.status == 1) {
 | 
	
		
			
				|  |  | -                    fnStructureCuringUser(data.curingList);
 | 
	
		
			
				|  |  | -                    fnPage(data.pageData);
 | 
	
		
			
				|  |  | -                } else {
 | 
	
		
			
				|  |  | -                    alert(data.msg);
 | 
	
		
			
				|  |  | -                }
 | 
	
		
			
				|  |  | -            }
 | 
	
		
			
				|  |  | -        })
 | 
	
		
			
				|  |  | +        refreshCuringPagination(parameter,currentPage);
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |  	
 | 
	
		
			
				|  |  |      /**
 | 
	
	
		
			
				|  | @@ -270,7 +257,20 @@ $(function() {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 关闭详情页--刷新用户列表
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    $('button[closeRefresh]').on('click', function(e){
 | 
	
		
			
				|  |  | +        // 只获取第一个选中的值
 | 
	
		
			
				|  |  | +        
 | 
	
		
			
				|  |  | +        var currentPage=$('button[closeRefresh]').attr('currentPage');
 | 
	
		
			
				|  |  | +        var parameter=$('button[closeRefresh]').attr('parameter');
 | 
	
		
			
				|  |  | +        if(mobile==''){
 | 
	
		
			
				|  |  | +        	currentPage=1;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        refreshCuringPagination(parameter,currentPage);
 | 
	
		
			
				|  |  | +        
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      
 | 
	
		
			
				|  |  |      
 |