chooseSchoolOne.vue
1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<template>
<div class="cardBox">
<van-tabs v-model="tabsName" @change="tabsChange">
<van-tab title="小学"></van-tab>
<van-tab title="初中"></van-tab>
<van-tab title="高中"></van-tab>
</van-tabs>
<div class="schoolCss">
<div
class="school-one"
v-for="(v, i) in schoolList"
:key="i"
@click="toActive(v)"
>
{{ v.name }}
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
tabsName: 0,
schoolList: [],
};
},
watch: {
tabsName(val) {
this.schoolList = [];
this.getList();
},
},
methods: {
toActive(v) {
this.$router.push({
name: "achievementsOne",
query: { schoolId: v.num },
});
},
//切换
tabsChange() {},
getList() {
this.yxAxios
.get(`${this.kqUrl}/schoolConsult/schoolList?schoolType=`+ (this.tabsName +1))
.then((res) => {
if (res.data.code == 200) {
this.schoolList = res.data.data;
console.log(this.schoolList)
} else {
this.$toast.fail(res.data.message);
}
});
// this.yxAxios
// .post(`${this.dataUrl}/sys/yx/schoolList`, {
// page: 1,
// pageSize: 999,
// schoolType: this.tabsName +1
// })
// .then((res) => {
// if (res.data.success) {
// this.schoolList = res.data.data.list;
// } else {
// this.$toast.fail(res.data.message);
// }
// });
},
},
mounted() {
this.getList();
},
};
</script>
<style lang="scss" scoped>
.cardBox {
padding: 2vw 0;
box-sizing: border-box;
.schoolCss {
font-size: 4.5vw;
margin: 5vw;
.school-one {
margin: 4vw 0;
letter-spacing: 0.3vw;
color: #666;
font-size: 4.3vw;
}
}
}
</style>