dm-wechat-mini/components/navbar/index.js
2025-01-09 05:43:21 +08:00

33 lines
455 B
JavaScript

// components/navBar.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
statusBarHeight:0,
navBarHeight:44
},
lifetimes:{
attached(){
console.log('1212121212');
const windowInfo = wx.getWindowInfo();
this.setData({
statusBarHeight:windowInfo.statusBarHeight
})
}
},
/**
* 组件的方法列表
*/
methods: {
}
})