//获取系统信息的概念
console.log(uni.getSystemInfoSync());
let res = uni.getSystemInfoSync()
//胶囊按钮的信息
console.log(uni.getMenuButtonBoundingClientRect());
let custom = uni.getMenuButtonBoundingClientRect()
//微信小程序导航栏高度
let navBarHight = (custom.top - res.statusBarHeight) * 2 + custom.height
console.log(navBarHight);