文件路徑:
/pages/index/index.vue
onShow里面加入下面紅框里面的代碼
代碼:
that.$nextTick(function() {
const query = uni.createSelectorQuery();
query.select('#home').boundingClientRect(); //獲取當前元素距離頂部的距離
query.exec(res =>{
if(res[0].top <= -60)that.isScrolled = true
})
})