作者:握住每一缕光 | 来源:互联网 | 2023-05-18 16:23
最近在项目遇到swiper高度不能自适应,导致swiper-item里面的内容过多时只能显示一部分,最终解决方案:<swipercurrent{{currentTab}}
最近在项目遇到swiper高度不能自适应,导致swiper-item 里面的内容过多时只能显示一部分,最终解决方案:
"{{currentTab}}" color: #800000;">"height: {{clientHeight?clientHeight+'px':'auto'}}">
"{{true}}" color: #800000;">"height: {{clientHeight?clientHeight+'px':'auto'}}" bindscrolltolower="scrollbot">
内容放在这
swiper-item {
overflow: scroll;
}
最后在后台动态获得屏幕可视区域高度clientHeight即可
onLoad: function () {
var that = this
wx.getSystemInfo({
success: function (res) {
that.setData({
clientHeight: res.windowHeight-177
});
}
})
}