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>

二、效果:


相关推荐
qq_184177677几秒前
前端自动部署项目到服务器
服务器·前端·javascript
Never_Satisfied7 分钟前
在JavaScript / HTML / Node.js中,post方式的Content-Type属性的text的三种编码
javascript·node.js·html
小小前端_我自坚强17 分钟前
Tailwind CSS 详解
css·程序员·开源
汤姆Tom18 分钟前
CSS 新特性与未来趋势
前端·css·面试
Never_Satisfied30 分钟前
在JavaScript / HTML中,Chrome报错Refused to execute inline script
javascript·chrome·html
敲代码的嘎仔35 分钟前
JavaWeb零基础学习Day2——JS & Vue
java·开发语言·前端·javascript·数据结构·学习·算法
棋子一名43 分钟前
跑马灯组件 Vue2/Vue3/uni-app/微信小程序
微信小程序·小程序·uni-app·vue·js
PFinal社区_南丞1 小时前
现代CSS开发环境搭建
css
Keepreal4961 小时前
pdf文件预览实现
javascript·react.js
PFinal社区_南丞1 小时前
容器查询 - 组件级响应式设计
css