|
|
|
@ -13,7 +13,7 @@ |
|
|
|
|
<!-- 课程筛选 --> |
|
|
|
|
<div class="filter"> |
|
|
|
|
<div class="wrap-inner" style="padding-bottom: 0"> |
|
|
|
|
<dl> |
|
|
|
|
<dl v-if="active != 2"> |
|
|
|
|
<dt>课程分类:</dt> |
|
|
|
|
<dd :class="{active: form.categoryId === ''}" @click="changeCategory('')">不限</dd> |
|
|
|
|
<dd v-for="(item, i) in classificationList" :key="i" :class="{active: form.categoryId === item.id}" @click="changeCategory(item.id)">{{ item.classificationName }}</dd> |
|
|
|
@ -38,6 +38,9 @@ |
|
|
|
|
<i class="el-icon-view"></i> |
|
|
|
|
{{ item.pageviews }} |
|
|
|
|
</div> |
|
|
|
|
<div class="meta collect" @click.stop="collect(item)"> |
|
|
|
|
<i :class="item.collectionStatus ? 'el-icon-star-on' : 'el-icon-star-off'"></i> |
|
|
|
|
</div> |
|
|
|
|
<div class="meta"> |
|
|
|
|
<i class="el-icon-user"></i> |
|
|
|
|
{{ item.schoolName }} |
|
|
|
@ -77,6 +80,10 @@ export default { |
|
|
|
|
{ |
|
|
|
|
id: 0, |
|
|
|
|
name: '共享课程' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
id: 2, |
|
|
|
|
name: '我的收藏' |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
form: { |
|
|
|
@ -109,7 +116,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
// 登录后的课程才需要展示本校课程 |
|
|
|
|
this.isTourist || this.tabs.push({ |
|
|
|
|
this.isTourist || this.tabs.splice(1, 0, { |
|
|
|
|
id: 1, |
|
|
|
|
name: '本校课程' |
|
|
|
|
}) |
|
|
|
@ -199,6 +206,12 @@ export default { |
|
|
|
|
this.page = val; |
|
|
|
|
this.getData(); |
|
|
|
|
}, |
|
|
|
|
// 收藏 |
|
|
|
|
collect(item) { |
|
|
|
|
this.$post(`${this.api.collectCourse}?courseId=${item.id}&state=${item.collectionStatus ? 0 : 1}`).then(res => { |
|
|
|
|
this.getData() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}, |
|
|
|
|
toDetail(id) { |
|
|
|
|
this.$router.push(`/${this.isTourist ? 'preCourse' : 'course'}/details?id=${id}&source=${this.active}`); |
|
|
|
|
} |
|
|
|
@ -369,6 +382,9 @@ export default { |
|
|
|
|
color: #a9a9a9; |
|
|
|
|
font-size: 12px; |
|
|
|
|
} |
|
|
|
|
.collect { |
|
|
|
|
font-size: 20px; |
|
|
|
|
} |
|
|
|
|
&:hover { |
|
|
|
|
box-shadow: 0px 5px 12px 4px rgba(142, 123, 253, 0.09), 0px 3px 6px 0px rgba(142, 123, 253, 0.12), 0px 1px 2px -2px rgba(142, 123, 253, 0.16); |
|
|
|
|
img { |
|
|
|
|