uniapp获取底部导航tabbar的高度(H5)

<view :style="'bottom:' + tabBarHeight + 'px;'">
</view>

<script>
	import {
		request
	} from '@/request/request.js';
	export default {
		data() {
			return {
				tabBarHeight: 0, // 底部tabBar高度, h5
			}
		},
		onLoad() {
			this.$nextTick(()=>{
				// #ifdef H5
				getTabBarHeight(){
					const systemInfo = uni.getSystemInfoSync()
					this.tabBarHeight = systemInfo.windowBottom
				},
				// #endif
			})
		},
	}

参考uniapp官网

异步获取系统信息

Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐