首先获取屏幕总高度
在获取当前swiper 距离顶部得位置
屏幕总高度减去当前swiper 距离顶部得位置 剩余的赋值给swiper高度
让scroll-view scroll-y 溢出可以滚动
html 代码

		                   <swiper class="swiperss" :current="activeIndex" @change='tabchange'  :style="{height:swiperheight}">
							   <swiper-item>
							   		<scroll-view scroll-y class="list" :style="{height:swiperheight}">
							   		</scroll-view>
							   </swiper-item>
		                    </swiper>

js 代码

		    uni.getSystemInfo({
		        success: (resu) => {// resu 可以获取当前屏幕的高度
		        const query = uni.createSelectorQuery()
		        query.in(this).select('.swiperss').boundingClientRect()//  .swiper 是swiper类名 可以获取当前swiper距离顶部的位置
		        query.exec(function(res) {
				console.log(res)
		        _this.swiperheight = resu.windowHeight - res[0].top+ 'px'; //屏幕的高度减去当前swiper距离顶部的高度就是剩余屏幕的高度 然后动态赋值给swiper
		        console.log('打印页面的剩余高度', _this.swiperheight);
		     })
		   },
		   fail: (res) => {}
		})  
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐