在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
data: {
statusbar: 0
},
页面获取状态栏高度
onLoad: function (e) {
const res = wx.getSystemInfoSync()
var statusbarH = res.statusBarHeight
this.setData({
statusbar :statusbarH
})
},
组件获取状态栏高度
attached() {
const res = wx.getSystemInfoSync()
var statusbarH = res.statusBarHeight
this.setData({
statusbar: statusbarH
})
},
|
请发表评论