scroll-view 注意事项
1·设置高度
页面增加样式 style="height:{{scrollHeight}}px;"
js 页面加载得时候
onLoad: function () {
that = this;
wx.getSystemInfo({
success: function (res) {
that.setData({
scrollHeight: res.windowHeight
});
}
});
}