|  | @@ -3,6 +3,8 @@
 | 
	
		
			
				|  |  |   */
 | 
	
		
			
				|  |  |  package com.jeeplus.modules.projectcontentinfo.web;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import java.io.UnsupportedEncodingException;
 | 
	
		
			
				|  |  | +import java.net.URLDecoder;
 | 
	
		
			
				|  |  |  import java.util.List;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import javax.servlet.http.HttpServletRequest;
 | 
	
	
		
			
				|  | @@ -190,11 +192,12 @@ public class ProjectBasedDataController extends BaseController {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @RequestMapping("selectList")
 | 
	
		
			
				|  |  | -    public String gridSelect(ProjectBasedData projectBasedData,Model model,String searchLabel,HttpServletRequest request,HttpServletResponse response){
 | 
	
		
			
				|  |  | +    public String gridSelect(ProjectBasedData projectBasedData,Model model,String searchLabel,HttpServletRequest request,HttpServletResponse response) throws UnsupportedEncodingException {
 | 
	
		
			
				|  |  |          Page<ProjectBasedData> page = projectBasedDataService.findPage(new Page<ProjectBasedData>(request,response), projectBasedData);
 | 
	
		
			
				|  |  | +		String searchLabel1 = URLDecoder.decode(searchLabel,"utf-8");
 | 
	
		
			
				|  |  |          model.addAttribute("obj", projectBasedData);
 | 
	
		
			
				|  |  |          model.addAttribute("page", page);
 | 
	
		
			
				|  |  | -        model.addAttribute("searchLabel",searchLabel);
 | 
	
		
			
				|  |  | +        model.addAttribute("searchLabel",searchLabel1);
 | 
	
		
			
				|  |  |          return "modules/sys/gridselectProjbasedata";
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |