|  |  | @ -280,6 +280,7 @@ public class SpecialSubjectServiceImpl extends BaseServiceImpl<SpecialSubjectDao | 
			
		
	
		
			
				
					|  |  |  |     @Override | 
			
		
	
		
			
				
					|  |  |  |     public List<PreviewResultDTO> preview(PreviewFormDTO formDTO) { | 
			
		
	
		
			
				
					|  |  |  |         List<PreviewResultDTO> result = new ArrayList<>(); | 
			
		
	
		
			
				
					|  |  |  |         if (CollectionUtils.isNotEmpty(formDTO.getTagIdList())) { | 
			
		
	
		
			
				
					|  |  |  |             formDTO.getTagIdList().forEach(tagId -> { | 
			
		
	
		
			
				
					|  |  |  |                 PreviewResultDTO previewResultDTO = new PreviewResultDTO(); | 
			
		
	
		
			
				
					|  |  |  |                 SpecialSubjectDTO subject = baseDao.getInfo(tagId); | 
			
		
	
	
		
			
				
					|  |  | @ -288,6 +289,7 @@ public class SpecialSubjectServiceImpl extends BaseServiceImpl<SpecialSubjectDao | 
			
		
	
		
			
				
					|  |  |  |                 previewResultDTO.setArticleList(articleService.getArticleListByTag(tagId, formDTO.getPageNo(), formDTO.getPageSize())); | 
			
		
	
		
			
				
					|  |  |  |                 result.add(previewResultDTO); | 
			
		
	
		
			
				
					|  |  |  |             }); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |         return result; | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |     } | 
			
		
	
	
		
			
				
					|  |  | 
 |