# 滚动tab导航开发(下)
# 封装滚动tab导航组件
<template>
<view>
<!-- 顶部选项卡 -->
<view class="uni-tab-bar">
<scroll-view scroll-x class="uni-swiper-tab">
<block v-for="(tab, index) in tabBars" :key="tab.id">
<view class="swiper-tab-list" :class="{'active':tabIndex===index}" @tap="tabtap(index)">
{{tab.name}}
<view class="swiper-tab-line">
</view>
</view>
</block>
</scroll-view>
</view>
</view>
</template>
<script>
export default {
props: {
tabBars: Array,
tabIndex: Number
},
methods: {
// tabbar点击事件
tabtap(index) {
this.$emit('tabtap', index)
},
}
}
</script>
<style lang="less" scoped>
.uni-tab-bar {
.uni-swiper-tab {
border-bottom: 1rpx solid #eee;
}
.swiper-tab-list {
color: #969696;
font-weight: bold;
}
.active {
color: #343434;
.swiper-tab-line {
border-bottom: 6rpx solid #fede33;
width: 70rpx;
margin: auto;
border-radius: 20rpx;
}
}
}
</style>
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
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
← 滚动tab导航开发(上) 上啦加载组件开发 →