|
@@ -141,6 +141,15 @@ export default {
|
|
lessonExaminationId: this.courseScheduleId,
|
|
lessonExaminationId: this.courseScheduleId,
|
|
subjectId: this.subjectId
|
|
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;
|
|
this.list = res.data;
|
|
} catch (e) {
|
|
} catch (e) {
|
|
console.log(e);
|
|
console.log(e);
|