> 文章列表 > uniapp 小程序自定义导航栏时设置顶部距离

uniapp 小程序自定义导航栏时设置顶部距离

uniapp 小程序自定义导航栏时设置顶部距离

在 App.vue 里设置:

onLaunch: function() {//获取系统信息  距离标题的距离uni.getSystemInfo({success: res => {let menu = uni.getMenuButtonBoundingClientRect() // 只适用于小程序let navigatorHeight = (menu.top - res.statusBarHeight) * 2 + menu.heightlet totalHeight = res.statusBarHeight + navigatorHeight + 14uni.setStorageSync('totalHeight', totalHeight); // 这个 totalHeight 就是了}})
},

西峡信息港