微信小程序 底部按钮(position: fixed;)遮挡列表内容问题

问题描述:
当页面数据接近或超过一页的时候,页面底部的固定按钮会遮挡一部分内容,导致内容显示不全,如下图:(列表的最后一个item的删除和更换按钮被底部固定的按钮遮住了)
微信小程序 底部按钮(position: fixed;)遮挡列表内容问题_第1张图片

解决方法:
在列表下边加一个盒子,给这个盒子一个高度,高度大于等于底部按钮的高度

<template>
	<view class="goodsList">
		<view class='list'>
		    <view class="recommend-item" v-for="(item, index) in listArr" :key="index">
				<!-- 此处内容省略... -->
			</view>
		</view>
		<view class='placeholder-view'></view>   <!-- 重点 -->
		<view class='btn'>
		    <button class='btn'>底部按钮</button>
		</view>
	</view>
</template>

<script>
	// 此处内容省略...
</script>

<style lang="scss" scoped>
.placeholder-view {  // <-重点
  width: 100%;
  height: 188rpx;
}

// 其它内容省略...
</style>

最终效果:
微信小程序 底部按钮(position: fixed;)遮挡列表内容问题_第2张图片

参考链接:
https://www.cnblogs.com/china-fanny/p/11134316.html

你可能感兴趣的:(小程序,微信小程序,uniapp,html/css)