uni-app 做吸顶样式时,由于手机型号的不同,导航条的高度也会有所区别,需要动态获取导航条的高度。
onReady(){
// .tui-navigation-bar为导航条类名
let info = uni.createSelectorQuery().select('.tui-navigation-bar')
info
.boundingClientRect((data) => {
this.stickyTop = data.height // stickyTop 需要设置的top高度
})
.exec()
},