Uniapp中自定义导航栏

一、代码:

复制代码
<template>
	<view class="page" :style="{ paddingTop: navbarHeight + 'px' }">
		<view class="navbar" :style="{ paddingTop: statusBarHeight + 'px' }">
			<view class="navbar-left" @click="goBack">
				<view class="navbar-left__arrow"></view>
			</view>
			<view class="navbar-title">{{title}}</view>
		</view>
		<view class="content">
			这里是内容区域 -- 渐变的内容
		</view>
		<!-- <view class="content2">
			这里是内容区域 -- 普通的内容
		</view> -->
	</view>
</template>

<script>
	export default {
		data() {
			return {
				title: '这是自定义标题',
				navbarHeight: 0, // 导航栏高度
				statusBarHeight: 0, // 状态栏的高度
			}
		},
		onLoad() {
			const systemInfo = uni.getSystemInfoSync();
			this.statusBarHeight = systemInfo.statusBarHeight;
			this.navbarHeight = this.statusBarHeight + 44; // 44是导航栏标准高度
		},
		onShow() {
			this.init()
		},
		methods: {
			init() {
				// 初始化页面
			},
			goBack() {
				// 获取当前页面栈
				const pages = getCurrentPages();
				if (pages.length > 1) {
					uni.navigateBack(); // 关闭当前页面,返回上一个页面
				} else {
					uni.redirectTo({  // 关闭当前页面,跳转到别的页面
						url: '/pages/index/index'
					});
				}
			},
		}
	}
</script>

<style scoped>
	.page {
		width: 100vw;
		height: 100vh;
		background-color: #F9F9FB;
	}

	.page .navbar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
		display: flex;
		align-items: center;
	}

	.page .navbar-title {
		flex: 1;
		height: 88rpx;
		line-height: 88rpx;
		text-align: center;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-weight: 600;
		font-size: 32rpx;
		color: #000000;
	}

	.page .content {
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 420rpx; /*渐变的高度*/ 
		background: linear-gradient(180deg, #C6EBFD 0%, #F9F9FB 100%);
		padding-top: calc(var(--status-bar-height) + 88rpx);
	}
	.page .content2 {
		padding: 32rpx 30rpx;
		background: pink;
	}
</style>

二、效果:


相关推荐
胡萝卜术1 小时前
在浏览器中跑 DeepSeek-R1:WebGPU 推理全流程深度解析
前端·javascript·面试
xiaominlaopodaren1 小时前
three.js地图数学基础(六):齐次坐标与矩阵
javascript·gis·three.js
AI砖家1 小时前
React Native 开发规范与完整流程指南
javascript·react native·react.js
小林ixn2 小时前
全栈项目实战:前端独立开发,不再傻等后端接口
前端·javascript·react.js
Asize2 小时前
前端接口工程:axios + mock,前端不再傻等后端
前端·javascript
结网的兔子2 小时前
【前端开发】UniApp 项目地图选型与Web-APP跨端迁移方案
前端·uni-app
张元清2 小时前
React useElementSize Hook:用 ResizeObserver 实时追踪元素宽高 (2026)
javascript·react.js
渣波2 小时前
React 性能优化与状态管理双雄:useMemo 与 useReducer 深度解析
前端·javascript
渣波2 小时前
告别 LLM 幻觉:用 Harness 工程化思维打造生产级 AI 应用
前端·javascript
cyadyx2 小时前
【vue】Pinia相对Vuex
前端·javascript·vue.js