uniapp最简单的底部兼容安全区域显示

效果图:
uniapp最简单的底部兼容安全区域显示_第1张图片

1.html写上动态padding-bottom

<view class="button-wrap" :style="'padding-bottom:'+bottomPadding+'rpx'">
			<view class="com-btn cencel-btn">
				取消
			</view>
			<view class="com-btn confirm-btn " @click='onConfirmDlg'>
				确认
			</view>
		</view>

2.获取设备信息

const res = await uni.getSystemInfo({})
this.bottomPadding = (res.screenHeight - res.safeArea.bottom) * 2 || 30

你可能感兴趣的:(小程序,前端,uni-app)