fav-tab-block.vue
1.56 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
<template>
<div class="tabs-wrap">
<ul class="tabs-list">
<li v-for="(item, index) in tabList" :key="index" @click="changeType(index, true)">
<div class="tabs-item" :class="{'active': active === index}">
{{item.name}}
<span class="t-num" :class="{'active': active === index}">{{item.subname}}</span>
</div>
</li>
</ul>
</div>
</template>
<script>
export default {
props: {
activeIndex: Number
},
data() {
return {
tabList: [
{name: '内容', subname: 'POST', type: 1},
{name: '收藏', subname: 'COLLECT', type: 2},
],
active: ''
};
},
created() {
this.changeType(this.activeIndex);
},
methods: {
changeType(index) {
if (!this.tabList[index]) {
index = 0;
}
this.active = index;
this.$emit('change', index);
},
computeCurrentTab() {
this.changeType(this.activeIndex || 0);
}
},
watch: {
activeIndex: 'computeCurrentTab'
}
};
</script>
<style>
.tabs-wrap {
background-color: #fff;
display: flex;
height: 96px;
justify-content: center;
align-items: center;
.tabs-list {
display: flex;
li {
font-size: 28px;
color: #b0b0b0;
font-weight: 300;
}
.tabs-item {
padding: 28px 40px;
}
.t-num {
color: #b0b0b0;
font-size: 20px;
zoom: 0.6;
margin-left: -4px;
}
.active {
color: #444;
font-weight: bold;
position: relative;
}
}
}
</style>