wx.startPullDownRefresh()后列表上方多出的导航条高度
如图,onShow()方法调用wx.startPullDownRefresh()后,列表上方会多出一个导航条的高度。而且,那个空白的地方还就是导航条,上方position:fixed显示的导航条点击无反应,相反,得点击多出部分导航条相对应部分,才会触发相应事件。ps:我测试的机型是ios11,最新微信版本。安卓无此现象!
导航条css:
width: 100%;
height: 96rpx;
color: #999;
font-size: 28rpx;
background-color: #fff;
position: fixed;
left: 0;
top: 0;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
z-index: 2;
列表页css:
width: 100%;
margin-top: 96rpx;