|
|
|
@ -151,7 +151,7 @@ export default { |
|
|
|
|
let res = await this.$get(`${this.api.queryChaptersAndSubsections}?courseId=${this.id}`) |
|
|
|
|
this.chapterList = res.chapterList |
|
|
|
|
if (this.chapterList.length && this.chapterList[0].subsectionList && this.chapterList[0].subsectionList.length) { |
|
|
|
|
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name); |
|
|
|
|
this.preview(this.chapterList[0].subsectionList[0], this.chapterList[0].name, 0); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
insertScript(){ |
|
|
|
@ -170,9 +170,9 @@ export default { |
|
|
|
|
if('mp4,3gp,mov,m4v,avi,dat,mkv,flv,vob,rmvb,rm,qlv'.includes(ext)) return '视频' |
|
|
|
|
return ext |
|
|
|
|
}, |
|
|
|
|
preview(row, chapterName){ |
|
|
|
|
preview(row, chapterName, showConfirm = 1){ |
|
|
|
|
// 如果没登录,直接去登录 |
|
|
|
|
if (!util.local.get(Setting.tokenKey)) { |
|
|
|
|
if (!util.local.get(Setting.tokenKey) && showConfirm) { |
|
|
|
|
this.$confirm('请先登录,是否直接前往登录?', "提示", { |
|
|
|
|
type: 'success' |
|
|
|
|
}).then(() => { |
|
|
|
@ -359,7 +359,7 @@ $height: 700px; |
|
|
|
|
.desc-wrap{ |
|
|
|
|
position: relative; |
|
|
|
|
.desc{ |
|
|
|
|
font-size: 14px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #fff; |
|
|
|
|
line-height: 22px; |
|
|
|
|
@include mul-ellipsis(4); |
|
|
|
@ -411,7 +411,7 @@ $height: 700px; |
|
|
|
|
background-color: #121214; |
|
|
|
|
.sectionName{ |
|
|
|
|
margin: 12px 0; |
|
|
|
|
font-size: 14px; |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #999; |
|
|
|
|
cursor: pointer; |
|
|
|
|
@include ellipsis; |
|
|
|
|