关于uniapp使用swiper及swiper-iteam及scroll-view上下滑动及宽高问题(一)

在uniapp中使用swiper必须要设置高度,一般都是动态设置。

一种是 高度 * 数量,这里不做详解。

最简单的一种是使用flex布局配合swiper+scroll-view实现(最简单)。 / / 有时间会写

另一种是 swiper + scroll-view 组合,获取系统高度 在此高度中滑动,这里要说的就是这种。
在这里插入图片描述
swiper 绑定一个高度
关于uniapp使用swiper及swiper-iteam及scroll-view上下滑动及宽高问题(一)_第1张图片
swiper-iteam下嵌套scroll-view,并设置scroll-view的高度为100%

.scrol{
		height: 100%;
}

在js中设置swiper的高度

data(){
	return{
		swiperHeight:''
	}
}
onLoad() {
	uni.getSystemInfo({	//获取系统信息
		success: (res) => {
			this.swiperHeight = res.windowHeight + 'px'
		},
		fail: (res) => {
			console.log('error')
		}
	})
}

你可能感兴趣的:(关于uniapp使用swiper及swiper-iteam及scroll-view上下滑动及宽高问题(一))