electricity_bill_calc_wx/components/customStatusBar/index.js
2024-03-26 17:38:31 +08:00

31 lines
405 B
JavaScript

// components/customStatusBar/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
height: 0,
},
lifetimes: {
attached() {
const { statusBarHeight } = wx.getSystemInfoSync();
this.setData({
height: statusBarHeight
})
}
},
/**
* 组件的方法列表
*/
methods: {
}
})