Commit 47a00977 authored by youjie's avatar youjie
parents 2b48e9ee 3c8ddefd
......@@ -25,7 +25,12 @@
<tr>
<td class="sticky-column coursebg">课程</td>
<td class="coursebg " v-for="(x, i) in students" :key="i">
{{ x.CourseName }}
<template v-if="x.CourseRate<=6">
{{ x.NewCourseName }}
</template>
<template v-else>
{{ x.CourseName }}
</template>
</td>
</tr>
<tr>
......@@ -495,7 +500,8 @@ export default {
for (let i = 0; i < maxTemp; i++) {
this.chapters.push({
ChapterId: i + 1,
ChapterName: `第${i + 1}次`
ChapterName: `第${i + 1}次`,
ChapterGradeNo: i+1
});
}
this.currentCourse.ClassHours = maxTemp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment