|
|
@ -487,7 +487,9 @@ export default { |
|
|
|
// 获取章节小节 |
|
|
|
// 获取章节小节 |
|
|
|
async getChapter () { |
|
|
|
async getChapter () { |
|
|
|
if (this.courseId) { |
|
|
|
if (this.courseId) { |
|
|
|
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`); |
|
|
|
let res = await this.$get(this.api.curriculumChapter, { |
|
|
|
|
|
|
|
courseId: this.courseId |
|
|
|
|
|
|
|
}) |
|
|
|
this.chapterList = res.chapterList; |
|
|
|
this.chapterList = res.chapterList; |
|
|
|
const chapter = this.chapter === undefined ? 0 : +this.chapter |
|
|
|
const chapter = this.chapter === undefined ? 0 : +this.chapter |
|
|
|
const section = this.section === undefined ? 0 : +this.section |
|
|
|
const section = this.section === undefined ? 0 : +this.section |
|
|
|