Compare commits

..

No commits in common. 'master' and 'dev_202412' have entirely different histories.

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

@ -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)

Loading…
Cancel
Save