|  | @@ -141,6 +141,15 @@ export default {
 | 
	
		
			
				|  |  |            lessonExaminationId: this.courseScheduleId,
 | 
	
		
			
				|  |  |            subjectId: this.subjectId
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  | +        const result = res.data || []
 | 
	
		
			
				|  |  | +        result.forEach(item => {
 | 
	
		
			
				|  |  | +          const detailDtos = item.detailDtos || []
 | 
	
		
			
				|  |  | +          if(detailDtos.length > 0) {
 | 
	
		
			
				|  |  | +            item.memo = detailDtos[0].memo || ''
 | 
	
		
			
				|  |  | +          } else {
 | 
	
		
			
				|  |  | +            item.memo = ''
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  |          this.list = res.data;
 | 
	
		
			
				|  |  |        } catch (e) {
 | 
	
		
			
				|  |  |          console.log(e);
 |