<template>
<div>
<list>
<cell v-for="(item,index) in 50" :key="index">
<view class="dome">
<text class="dome-text">{{index}}</text>
</view>
</cell>
</list>
</div>
</template>
<script>
export default {
}
</script>
<style>
.dome{
height: 300rpx;
background-color: #007AFF;
width: 750rpx;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 20rpx;
}
.dome-text{
color: #FFFFFF;
font-size: 50rpx;
}
</style>

- 发布:2021-10-21 09:17
- 更新:2021-10-22 20:50
- 阅读:422
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.2.9
手机系统: iOS
手机系统版本号: iOS 15
手机厂商: 苹果
手机机型: 苹果11pro
页面类型: nvue
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
再苹果ios15系统 中 上下滚动数据正常显示
再苹果ios15系统 中 上下滚动数据正常显示
预期结果:
再苹果ios15系统 中 上下滚动正常显示
再苹果ios15系统 中 上下滚动正常显示
实际结果:
再苹果ios15系统 中 上下滚动出现白屏
再苹果ios15系统 中 上下滚动出现白屏
bug描述:
nvue页面中使用list-cell方法 再ios15下 上下滚动会出现空白dome中能直接体现
