|  | @@ -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;
 | 
	
	
		
			
				|  | @@ -126,7 +128,8 @@ public class ProjectReportDataController extends BaseController {
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	@RequestMapping("selectreportData")
 | 
	
		
			
				|  |  | -	public String gridSelectData(ProjectReportData projectReportData, String searchLabel , HttpServletRequest request, HttpServletResponse response, Model model){
 | 
	
		
			
				|  |  | +	public String gridSelectData(ProjectReportData projectReportData, String searchLabel , HttpServletRequest request, HttpServletResponse response, Model model) throws UnsupportedEncodingException {
 | 
	
		
			
				|  |  | +		searchLabel = URLDecoder.decode(searchLabel, "UTF-8");
 | 
	
		
			
				|  |  |  		projectReportData.setFileStatus("1");
 | 
	
		
			
				|  |  |  		Page<ProjectReportData> page = projectReportDataService.findInfoPageByStatus(new Page<ProjectReportData>(request, response), projectReportData);
 | 
	
		
			
				|  |  |  		model.addAttribute("obj", projectReportData);
 |