赞
踩
- onReady() {
- //精确动态计算轮播图高度
- //自定义tabbar获取方法
- uni.getSystemInfo({
- success: res => {
- const query = uni.createSelectorQuery()
- query.select('.tabbars').boundingClientRect()
- query.exec(res1 => {
- this.scrollheight = res.windowHeight - res.statusBarHeight - uni.upx2px(88) - res1[0].height;
- })
-
- }
- })
- //原生tabbar写法
- uni.getSystemInfo({
- success: res => {
- this.scrollheight = res.windowHeight - res.statusBarHeight- uni.upx2px(88);
- }
- })
- },
- <scroll-view :scroll-top="scrollTops" scroll-y="true" :style="'height:'+scollHeight+'px'">
- <view>
-
- </view>
- </scroll-view>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。