提交 b71cdd5a authored 作者: 王鹏飞's avatar 王鹏飞

课程详情页只显示视频章节

上级 a3c3b5c2
...@@ -54,6 +54,10 @@ export default { ...@@ -54,6 +54,10 @@ export default {
// 课程学习 // 课程学习
getCourse() { getCourse() {
api.getCourse(this.courseId).then(response => { api.getCourse(this.courseId).then(response => {
response.chapters = response.chapters.filter(item => {
item.children = item.children.filter(child => child.type === 2)
return item.children.length
})
this.detail = response this.detail = response
}) })
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论