|
@@ -217,10 +217,10 @@ export default {
|
|
|
computed: {
|
|
|
exceptionPlan() {
|
|
|
let str = "该乐团当前学期";
|
|
|
- this.planDtosList.forEach((plan) => {
|
|
|
- str += `${plan.classGroupName}班${filterCourseType[plan.scheduleType]}${
|
|
|
+ this.planDtosList.forEach((index,plan) => {
|
|
|
+ str += `${(index+1)}.${plan.classGroupName}班${filterCourseType[plan.scheduleType]}${
|
|
|
plan.num
|
|
|
- }次; `;
|
|
|
+ }次未进行教学规划; `;
|
|
|
});
|
|
|
return str;
|
|
|
},
|