uniapp自定义tabbar

1.page中配置每个页面;

2.配置tabbar

	"tabBar":{
		"custom":true,
		"list":[{
			"pagePath":"pages/index/index",
			"text":"首页"
		},{
			"pagePath":"pages/initerview-question/initerview-question",
			"text":"刷面试题"
		},{
			"pagePath":"pages/initerview-process/initerview-process",
			"text":"面试流程"
		},{
			"pagePath":"pages/my-contract/my-contract",
			"text":"我的协议"
		},{
			"pagePath":"pages/my-card/my-card",
			"text":"我的名片"
		}]
	}
  1. App.vue中隐藏原有的tabbar
<script>
	export default {
		onLaunch: function() {
			console.log('App Launch')
			uni.hideTabBar()
		},
		onShow: function() {
			console.log('App Show')
			uni.hideTabBar()
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

4.创建自定义的tabbar组件

<template>
	<view class="tabbar">
		<view class="tabbar-list">
			<view class="tabbar-list-ul">
				<view class="tabbar-list-li" v-for="(item,index) in tabBar.list" :key='index' @click="setSelected(index)">
					<view class="tabbar-list-li-icon">
						<image :src="selected == index ? item.selectedIconPath : item.iconPath" mode=""></image>
					</view>
					<view :class="selected == index ? 'tabbar-list-li-name active' : 'tabbar-list-li-name'">{{ item.text }}</view>
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default{
		props:['selected'],
		data(){
			return{
				tabBar:{
					list:[{
						pagePath:'/pages/index/index',
						iconPath:'/static/tabbar/home.png',
						selectedIconPath:'/static/tabbar/home-selected.png',
						text:'首页'
					},{
						pagePath:'/pages/initerview-question/initerview-question',
						iconPath:'/static/tabbar/question.png',
						selectedIconPath:'/static/tabbar/question-selected.png',
						text:'刷面试题'
					},{
						pagePath:'/pages/initerview-process/initerview-process',
						iconPath:'/static/tabbar/process.png',
						selectedIconPath:'/static/tabbar/process-selected.png',
						text:'面试流程'
					},{
						pagePath:'/pages/my-contract/my-contract',
						iconPath:'/static/tabbar/contract.png',
						selectedIconPath:'/static/tabbar/contract-selected.png',
						text:'我的协议'
					},{
						pagePath:'/pages/my-card/my-card',
						iconPath:'/static/tabbar/card.png',
						selectedIconPath:'/static/tabbar/my-selected.png',
						text:'我的名片'
					}]
				}
			}
		},
		methods:{
			setSelected(index){
				uni.switchTab({
					url:this.tabBar.list[index].pagePath
				})
			}
		}
	}
</script>

<style scoped>
	.tabbar{
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		box-sizing: border-box;
		z-index: 999;
	}
	.tabbar-list{
		width: 100%;
		color: #344356;
		background: #FFFFFF;
		position: fixed;
		left: 0;
		bottom: 0;
		box-shadow: 0px -12px 37px 0px rgba(230,235,243,0.9);
		border-top-left-radius: 30rpx;
		border-top-right-radius: 30rpx;
		box-sizing: border-box;
	}
	.tabbar-list-ul{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-around;
		align-items: center;
		box-sizing: border-box;
	}
	.tabbar-list-li-icon{
		width: 56rpx;
		height: 56rpx;
		margin: 0 auto;
		padding: 20rpx 0;
	}
	.tabbar-list-li-icon image{
		width: 56rpx;
		height: 56rpx;
	}
	.tabbar-list-li-name{
		width: 100%;
		height: 40rpx;
		text-align: center;
		line-height: 40rpx;
		font-size: 28rpx;
		font-family: Microsoft YaHei;
	}
	.active {
		color: #5468ff;
	}
</style>

5.页面中引入

<template>
	<view class="initerview-process">
		<text>面试流程</text>
		<MyTabbar :selected='selected'></MyTabbar>
	</view>
</template>

<script>
	import MyTabbar from '@/common/tabbar/my-tabbar.vue'
	export default {
		data() {
			return {
				selected:2
			}
		},
		components:{
			MyTabbar
		}
	}
</script>

<style>
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值