自定义顶部导航栏

组件

<template>
	<view class="bar-sticky">
		<view class="status-line" :style="{height: lineHeight, background: navigationBarStyle.background || normal.background}">	
		</view>
		<view class="bar-line" :style="{background: navigationBarStyle.background || normal.background}">
			<view class="bar-line container-in" :style="{background: navigationBarStyle.background || normal.background}">
				<view class="bar-font bar-content" v-if="!custom">
					<view class="icon-fanhui bar-back" :style="{color: navigationBarStyle.iconColor || normal.iconColor}" @click="$turnPage('1', 'navigateBack')"
					 v-if="showBack">
						<uni-icons type="back" size="30" color="#f9f8f8"  ></uni-icons>
					</view>
					<view class="bar-title" :style="{color: navigationBarStyle.fontColor || normal.fontColor}">
						{{navigationBarStyle.iconText}}
					</view>
				</view>
				<view class="bar-font container-in" v-else>
					<slot></slot>
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	import uniIcons from '../../components/uni-icons/uni-icons.vue'
	export default {
		props: {
			custom: {
				type: Boolean,
				default: false
			}, //自定义头部,否则沿用原生的头部样式
			
			
			navigationBarStyle: {
				type: Object,
				default: function() {
					return {
						background: '#1d1515',
						fontColor: '#f5efef',
						iconColor: '#f5efef',
						iconText: '好运牛' //导航栏文字
					}
				}
			}, //原生头部自定义样式
			showBack: {
				type: Boolean,
				default: true
			}, //是否显示回退图标,默认显示
		},
		data() {
			return {
				normal: {
					background: '#FFFFFF',
					fontColor: '#000000',
					iconColor: '#000000',
				}, //公用样式,个性化样式可通过传值实现
				lineHeight: '' //状态栏高度
			};
		},
		components: {
			uniIcons:uniIcons
		},
		mounted() {
			  let menuButtonInfo = uni.getMenuButtonBoundingClientRect()
			console.log("menuButtonInfo",menuButtonInfo)
			const systemInfo = uni.getSystemInfoSync();
			// px转换到rpx的比例
			let pxToRpxScale = 750 / systemInfo.windowWidth;
			let systems = {
				ktxStatusHeight: systemInfo.statusBarHeight * pxToRpxScale, // 状态栏的高度
				navigationHeight: 44 * pxToRpxScale, // 导航栏的高度
				ktxWindowWidth: systemInfo.windowWidth * pxToRpxScale, // window的宽度
				ktxWindowHeight: systemInfo.windowHeight * pxToRpxScale, // window的高度
				ktxScreentHeight: systemInfo.screenHeight * pxToRpxScale, // 屏幕的高度
			}
			// 底部tabBar的高度
			systems.tabBarHeight = systems.ktxScreentHeight - systems.ktxStatusHeight - systems.navigationHeight - systems.ktxWindowHeight // 底部tabBar的高度
			this.lineHeight = systems.ktxStatusHeight + 'rpx';
			this.$emit('getHeight', systems)
		}
	}
</script>

<style lang="less">
	.bar-content {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	//导航栏吸顶效果
	.bar-sticky {
		position: sticky;
		position: -webkit-sticky;
		top: 0;
		z-index: 101;
	}

	/*垂直居中*/
	.container-in {
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		width: 100%;
		height: 44px;
	}

	.bar-line {
		height: 44px; //导航栏高度

		.bar-back {
			font-size: 52rpx !important;
			position: absolute;
			left: 30rpx;
		}

		.bar-title {
			font-size: 32rpx;
		}
	}
</style>

pages.json配置

在tabBar或者pages配置
"navigationStyle":"custom"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值