css:
.page{ background: #efefef; height: calc(100% - 48px); position: fixed; bottom:48px; }.page-content{ margin-top: 10rpx; overflow: auto; }
wxml:
class="page" >
<view>
<nav-component prop_title="{{nav_title}}" id="title-nav">nav-component>
view>
<view class="page-content" style="height:calc(100% - {{topHeight+'px'}});" >
view>
view>
page-content的内容会滚动,但是onPageScroll页面滚动监听失效?
我发现去掉overflow他就可以监听到了
你是通过 setData 设置 topHeight来控制滚动高度的吗?