Files
MiniProgram/ProjectLiaisonForm/pages/sticky/container/index.js

21 lines
293 B
JavaScript
Raw Normal View History

2025-08-15 14:05:08 +08:00
Component({
properties: {
navbarHeight: {
type: Number,
value: 0,
},
},
data: {
container: null,
},
lifetimes: {
ready: function () {
this.setData({
container: () => this.createSelectorQuery().select('.wrapper'),
});
},
},
});