商品首页模板
搜索框动态随着滚动而自动收缩可添加如下代码
onPageScroll(e) {
this.$nextTick(() => {
if (e.scrollTop < 50) {
this.isScrollTop = true
} else {
this.isScrollTop = false
}
})
},
用以上方法来监听页面滚动。
h5会自动收缩