- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
使用的是自定义导航,部分机型会出现这种情况,没有渠道system或者胶囊的值(真机表现)
- 提供一个最简复现 Demo
onLaunch: function(options) {
// 获取系统状态栏信息
wx.getSystemInfo({
success: e => {
this.globalData.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
this.globalData.Custom = custom;
this.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
this.globalData.ScreenHeight = e.screenHeight;
this.globalData.ScreenWidth = e.screenWidth
}
});
})
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)