chooseSchoolOne.vue
1.41 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
<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.schoolName }}
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
tabsName: 0,
schoolList: [
{ schoolName: "柯桥区实验小学" },
],
};
},
watch: {
tabsName(val) {
console.log(val);
this.schoolList = [];
if (val == 0) {
this.getList();
} else if (val == 1) {
} else if (val == 2) {
}
},
},
methods: {
//详情新闻
toDetails() {
this.$router.push({ name: "pageDetails" });
},
toActive() {
this.$router.push({ name: "achievementsOne" });
},
//切换
tabsChange() {},
getList() {
this.schoolList = [
{ schoolName: "柯桥区实验小学" },
];
},
},
};
</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>