Files

18 lines
434 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
Page({
data: {
navbarHeight: 0,
},
onLoad() {
this.getCustomNavbarHeight();
},
getCustomNavbarHeight() {
const query = wx.createSelectorQuery();
query.select('.custom-navbar').boundingClientRect();
query.exec((res) => {
console.log(res);
const { height = 0 } = res[0] || {};
this.setData({ navbarHeight: height });
});
},
});