自定义tabbar
This commit is contained in:
@ -31,25 +31,25 @@ export default {
|
||||
{
|
||||
id: 0,
|
||||
path: '/pages/index/index',
|
||||
// icon: '/static/template.png',
|
||||
// selectIcon: '/static/templateHL.png',
|
||||
icon: '/static/logo.png',
|
||||
selectIcon: '/static/logo.png',
|
||||
text: '首页',
|
||||
centerItem: false
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
path: '/pages/midell/index',
|
||||
// icon: '/static/api.png',
|
||||
// selectIcon: '/static/apiHL.png',
|
||||
text: '中间',
|
||||
path: '/pages/person/person',
|
||||
// icon: '/static/logo.png',
|
||||
// selectIcon: '/static/logo.png',
|
||||
text: '扫一扫',
|
||||
// 通过类名class控制样式大小
|
||||
centerItem: true
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
path: '/pages/mine/index',
|
||||
// icon: '/static/component.png',
|
||||
// selectIcon: '/static/componentHL.png',
|
||||
path: '/pages/person/person',
|
||||
icon: '/static/logo.png',
|
||||
selectIcon: '/static/logo.png',
|
||||
text: '我的',
|
||||
centerItem: false
|
||||
}
|
||||
@ -72,7 +72,7 @@ export default {
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="less" scope>
|
||||
<style lang="scss" scope>
|
||||
view {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@ -110,12 +110,12 @@ view {
|
||||
}
|
||||
// 未被选中的导航栏字体
|
||||
.item-bottom {
|
||||
font-size: 28rpx;
|
||||
font-size: 12px;
|
||||
width: 100%;
|
||||
}
|
||||
// 被选中的导航栏字体
|
||||
.item-active {
|
||||
color: #f00;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
@ -132,7 +132,6 @@ view {
|
||||
left: calc(50% - 50rpx);
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 5px #999;
|
||||
background-color: rgb(240, 63, 131);
|
||||
}
|
||||
.item-bottom {
|
||||
position: absolute;
|
||||
|
@ -1,86 +0,0 @@
|
||||
<template>
|
||||
<view class="tab-bar">
|
||||
<view class="content">
|
||||
<view class="one-tab" v-for="(item, index) in tabBarList" :key="index" @click="selectTabBar(item.pagePath)">
|
||||
<view>
|
||||
<view class="tab-img">
|
||||
<image v-if="routePath === item.pagePath" class="img" :src="item.selectedIconPath"></image>
|
||||
<image v-else class="img" :src="item.iconPath"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="routePath === item.pagePath" class="tit selectTexts">{{ item.text }}</view>
|
||||
<view v-else class="tit texts">{{ item.text }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
// 底部导航栏数据
|
||||
tabBarList: {
|
||||
type: Array,
|
||||
required: true
|
||||
},
|
||||
// 当前页面路径
|
||||
routePath: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
selectTabBar(path) {
|
||||
this.$emit('onTabBar', path)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.tab-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: calc(10rpx + constant(safe-area-inset-bottom));
|
||||
padding-bottom: calc(10rpx + env(safe-area-inset-bottom));
|
||||
background-color: #fff;
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
|
||||
.one-tab {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
width: 50%;
|
||||
|
||||
.tab-img {
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
|
||||
.img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.tit {
|
||||
font-size: 30rpx;
|
||||
transform: scale(0.7);
|
||||
}
|
||||
.selectTexts{
|
||||
color:#1890e1;
|
||||
}
|
||||
.texts{
|
||||
color: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user