scroll-view纵向滚动设置height:100%没效果,设置固定高度有效果。但是需求是高度为页面高度,
您好,你需要获取小程序系统高度,代码如下:
<scroll-view scroll-y class=
'wall_main '
style=
'height:{{mainH}}rpx'
></scroll-view>
wx.getSystemInfo({
success:
function
(res) {
that.setData({
mainH: res.windowHeight
})
}
你需要设置 css里面写
page{
height: 100%;