Compare commits

...

3 Commits

  1. 9
      src/pages/station/list/index.vue

@ -10,7 +10,7 @@
</div>
<div class="station">
<div class="inner">
<div class="tabs">
<div v-if="showTypes" 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,6 +77,7 @@ export default {
typeActive: +this.$route.query.typeActive || 0,
active: this.$route.query.active ? +this.$route.query.active : '',
searchTimer: null,
showTypes: false,
types: [
{
id: 0,
@ -119,8 +120,14 @@ 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)

Loading…
Cancel
Save