用户在某一个页面中选择完选项,需要点击确定按钮,进行数据的保存,但是他的手机上并没有按钮。我这边尝试了苹果手机,包括同华为Pura 70 Pro 2台手机并没有出现问题,该按钮呢也没有做逻辑判断,是常显示的,因为用户无法到现场调试,所以问一下有没有遇到相同问题的,我贴上该按钮的html和css代码
<view class="footer">
<view class="consult_1" @tap="addHouse()">确认添加</view>
</view>
.footer {
width: 100vw;
display: flex;
justify-content: flex-end;
align-items: center;
padding: 20rpx 20rpx 40rpx 30rpx;
background: rgba(255, 255, 255, 1);
position: fixed;
bottom: 0;
left: 0;
border-top: 1px solid #f2f2f2;
z-index: 999999999;
box-sizing: border-box;
}
.consult_1 {
width: 200rpx;
height: 90rpx;
background: #357fff;
border-radius: 10rpx;
color: #ffffff;
font-size: 30rpx;
text-align: center;
line-height: 90rpx;
position: relative;
z-index: 99999999;
}

Mrxiaodong
- 发布:2025-03-06 09:08
- 更新:2025-03-06 11:55
- 阅读:35
用户反馈华为手机Pura 70微信小程序出现按钮消失问题
分类:uni-app
Mrxiaodong (作者)
页面正常,就是丢失一个按钮
2025-03-06 14:28