styleday/app.js
2018-12-14 19:25:48 +08:00

16 lines
293 B
JavaScript

//app.js
App({
onLaunch: function () {
wx.getSystemInfo({
success: res => {
//导航高度
this.globalData.navHeight = res.statusBarHeight + 46;
}, fail(err) {
console.log(err);
}
})
},
globalData: {
navHeight:0
}
})