概述
<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自定义 头部所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复