|
@@ -131,9 +131,10 @@ export default defineComponent({
|
|
|
item.studentLessonTrainingDetails.length > 0
|
|
|
) {
|
|
|
item.studentLessonTrainingDetails.forEach((child: any) => {
|
|
|
- if (child.trainingType === 'PRACTICE') {
|
|
|
+ if (child.trainingType === 'PRACTICE' && child.musicName) {
|
|
|
pTitle += pTitle ? '、' + child.musicName : child.musicName;
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ if (child.trainingType === 'EVALUATION' && child.musicName) {
|
|
|
eTitle += eTitle ? '、' + child.musicName : child.musicName;
|
|
|
}
|
|
|
});
|