我是靠谱客的博主 安详苗条,最近开发中收集的这篇文章主要介绍uni自定义 头部,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<template>
	<view class="box">

		<view class="box_box">
			<view class="box_top">
				<!-- 顶部 -->
				<view class="status_bar" :style="{height:heightTop}">
					<!-- 这里是状态栏 -->
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				heightTop: '',

			}
		},
		onShow() {
			uni.getSystemInfo({
				success: function(res) {
					this.heightTop = res.statusBarHeight + "px"
					console.log(this.heightTop)
				}
			})
		},
		methods: {

		}
	}
</script>

<style lang="less">
	page{
		background-color: #F8F8F8;
	}
	.box {
		.box_box {
			box-sizing: border-box;
			// height: 100%;

			// 顶部
			.box_top {
				width: 750rpx;
				min-height: 135rpx;
				background-color: #fff;

				.status_bar {
					height: var(--status-bar-height);
					width: 100%;
					padding-bottom: 10rpx;
				}
			}
		}
	}
</style>

最后

以上就是安详苗条为你收集整理的uni自定义 头部的全部内容,希望文章能够帮你解决uni自定义 头部所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部