Files
MiniProgram/ProjectLiaisonForm/pages/sticky/sticky.js
2025-08-15 14:05:08 +08:00

18 lines
434 B
JavaScript

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 });
});
},
});