Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

给固定高度的话有时只有一条数据的话会有很大的空白 这种情况怎么办?怎样才能自适应呢?有没有好的解决办法?

<scroll-view class="scroll1" bindscrolltolower="loadMore1" data-id="{{list[current].id}}" scroll-y>
</scroll-view>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

scroll-view设置一个固定高度

 <scroll-view class="scroll1" style='height:800px' bindscrolltolower="loadMore1" data-id="{{list[current].id}}" scroll-y>
 </scroll-view>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...