瀏覽代碼

提交一下啊

1
mo 3 年之前
父節點
當前提交
2e32a0f823
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/views/resetTeaming/components/archicesComponents/trainPlan.vue

+ 3 - 3
src/views/resetTeaming/components/archicesComponents/trainPlan.vue

@@ -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;
     },