|
|
|
@ -10,7 +10,7 @@ |
|
|
|
|
</div> |
|
|
|
|
<div class="station"> |
|
|
|
|
<div class="inner"> |
|
|
|
|
<div v-if="showTypes" class="tabs"> |
|
|
|
|
<div class="tabs"> |
|
|
|
|
<a class="item" v-for="(item, i) in types" :key="i" :class="{ active: item.id === typeActive }" |
|
|
|
|
@click="tabChange(item)">{{ item.name }}</a> |
|
|
|
|
</div> |
|
|
|
@ -77,7 +77,6 @@ export default { |
|
|
|
|
typeActive: +this.$route.query.typeActive || 0, |
|
|
|
|
active: this.$route.query.active ? +this.$route.query.active : '', |
|
|
|
|
searchTimer: null, |
|
|
|
|
showTypes: false, |
|
|
|
|
types: [ |
|
|
|
|
{ |
|
|
|
|
id: 0, |
|
|
|
@ -120,14 +119,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
|
this.getTab() |
|
|
|
|
this.getSchoolId() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 查询schoolId,处理备课管理的展示 |
|
|
|
|
async getSchoolId () { |
|
|
|
|
const { data } = await this.$get(this.api.logoDetail) |
|
|
|
|
this.showTypes = data.schoolId === 901 || data.schoolId === 2845 |
|
|
|
|
}, |
|
|
|
|
// 获取tab |
|
|
|
|
async getTab () { |
|
|
|
|
const res = await this.$get(this.api.getSchoolCourseAuthority) |
|
|
|
|