当前位置:   article > 正文

uniapp 除去tabBar可视化高度_uniapp 减去tabbar高度

uniapp 减去tabbar高度
<template>
	<view :style="{height:windowHeight+'px'}" class="motion">
		<uni-segmented-control :values="itemList" styleType="text" />
		<view class="map-view">
			<map :latitude="37.0152" :longitude="122.52456" />
		</view>
	</view>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
	export default {
		data() {
			return {
				itemList: ['跑步', '步行', '骑行', '爬山'],
				windowHeight: 700
			}
		},
		onLoad() {
			var sysInfo = uni.getSystemInfoSync();
			this.windowHeight = sysInfo.windowHeight;
		}
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/538138
推荐阅读
相关标签