You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
713 B
28 lines
713 B
5 years ago
|
App({
|
||
|
onLaunch: function () {
|
||
|
let menuButtonObject = wx.getMenuButtonBoundingClientRect();
|
||
|
wx.getSystemInfo({
|
||
|
success: res => {
|
||
|
|
||
|
//导航高度
|
||
|
let statusBarHeight = res.statusBarHeight,
|
||
|
navTop = menuButtonObject.top,
|
||
|
navHeight = statusBarHeight + menuButtonObject.height + (menuButtonObject.top - statusBarHeight)*2;
|
||
|
this.globalData.navHeight = navHeight;
|
||
|
this.globalData.navTop = navTop;
|
||
|
this.globalData.windowHeight = res.windowHeight;
|
||
|
},
|
||
|
fail(err) {
|
||
|
console.log(err);
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
globalData: {
|
||
|
deptDataScopeList: [],
|
||
|
currentDept: {},
|
||
|
pageSize:10
|
||
|
},
|
||
|
onPageNotFound (res) {
|
||
|
|
||
|
}
|
||
|
})
|