|
|
|
@ -102,8 +102,7 @@ |
|
|
|
|
<!-- 购买弹框 --> |
|
|
|
|
<el-dialog title="温馨提示" :visible.sync="buyVisible" width="420px" center :close-on-click-modal="false"> |
|
|
|
|
<div class="buy"> |
|
|
|
|
<p class="tips">该课程订阅期限已到期,若需要续费请扫码添加客服咨询“</p> |
|
|
|
|
<img src="@/assets/img/wechat-code.jpeg" alt=""> |
|
|
|
|
<p class="tips">该课程订阅期限已到期,请联系院校管理员续费</p> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
@ -206,8 +205,8 @@ export default { |
|
|
|
|
async getChapter() { |
|
|
|
|
let res = await this.$get(`${this.api.curriculumChapter}/${this.courseId}`); |
|
|
|
|
this.chapterList = res.chapterList; |
|
|
|
|
if (this.overdue && this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { |
|
|
|
|
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name); |
|
|
|
|
if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { |
|
|
|
|
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 1); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 插入阿里云播放器脚本 |
|
|
|
@ -238,9 +237,9 @@ export default { |
|
|
|
|
if('mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv'.includes(suf)) return '视频' |
|
|
|
|
return suf |
|
|
|
|
}, |
|
|
|
|
preview(row, chapterName) { |
|
|
|
|
preview(row, chapterName, showDia = 0) { |
|
|
|
|
// 如果没过期,则正常预览,否则显示购买弹框 |
|
|
|
|
if (this.overdue) { |
|
|
|
|
if (this.overdue || showDia) { |
|
|
|
|
this.curLink = `${chapterName}${row.name}`; // 章节名称+小节名称,小节名称有重复的情况,如果只用小节名称判断,会有同时选中多个的情况 |
|
|
|
|
this.playauth = ""; |
|
|
|
|
this.coverUrl = ""; |
|
|
|
@ -439,11 +438,14 @@ $height: 700px; |
|
|
|
|
.page { |
|
|
|
|
margin: 12px 0; |
|
|
|
|
.intro { |
|
|
|
|
font-size: 16px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 24px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.l-title { |
|
|
|
|
font-size: 17px; |
|
|
|
|
} |
|
|
|
|
.cover{ |
|
|
|
|
flex: 1; |
|
|
|
|
background-color: #252528; |
|
|
|
|