获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我也遇到了同样的问题, 在tab切换时,scroll-view就会丢失高度, 而且只会在苹果6下出现
iPhone6真机 flex下的scroll-view没有高度<page style="height:100%;"> <view style="height:100%;"> <view style="transform: translateY(-50%);position: relative;top: 50%;max-height:100%;display:flex;flex-direction: column"> <view style="height:200rpx;">header</view> <scroll-view style="height: 100%;overflow-y:auto;overflow-x:hidden" scroll-y> <view wx:for="{{10}}">iPhone6看不到我</view> </scroll-view> <view style="height:200rpx;">footer</view> </view> </view> </page>
2020-01-10