You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.1 KiB
71 lines
1.1 KiB
<template>
|
|
<view class="tabs">
|
|
<view v-for="(item, index) in tabList"
|
|
:key="index"
|
|
class="tabs_list"
|
|
:class="[active == index ? 'active-item' :' ']"
|
|
@tap="setTabs(item,index)"
|
|
>
|
|
{{item.name}}
|
|
<view class="active" v-show="active == index"></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
components: {},
|
|
props: {
|
|
colors: {
|
|
type: String
|
|
},
|
|
tabList: {
|
|
type: Array
|
|
},
|
|
active: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
},
|
|
methods: {
|
|
setTabs(item,index) {
|
|
this.$emit('setTabs',item,index);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.tabs{
|
|
height: 80upx;
|
|
line-height: 80upx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
}
|
|
.tabs_list{
|
|
flex: 1;
|
|
text-align: center;
|
|
font-size: 28upx;
|
|
position: relative;
|
|
color: #333;
|
|
}
|
|
.active{
|
|
font-weight: bold;
|
|
color: #DD4F42;
|
|
width: 50upx;
|
|
height: 5upx;
|
|
border-radius: 20upx;
|
|
background-color: #DD4F42;
|
|
position: absolute;
|
|
bottom: 10upx;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
transition: all 0.3s;
|
|
}
|
|
</style> |