<view class="page-root">
<list class="list">
<cell v-for="item in arr" :key="item.id">
<view class="item">
<text>{{ item.id }}</text>
<template>
<image
style="width: 300px;height: 60px;"
src="https://web-assets.dcloud.net.cn/unidoc/zh/uni-app.png"
mode="scaleToFill"
/>
</template>
</view>
</cell>
</list>
</view>
</template>
<script>
export default {
data() {
return {
message: '',
arr: []
}
},
onLoad() {
this.init()
const arr2 = []
let i = 0
while (i < 100) {
arr2.push({
id: 'radius' + (i + 1)
})
i++
}
this.arr = arr2
},
methods: {
init() {
//
}
}
}
</script>
<style scoped lang='scss'>
.page-root {
margin-top: 100rpx;
}
.list {
display: flex;
width: 750rpx;
flex-direction: column;
padding: 30rpx;
}
.item {
width: 690rpx;
display: flex;
height: 300rpx;
flex-direction: column;
border: 1px solid #e0e0e0;
margin-bottom: 30rpx;
}
.bg {
width: 690rpx;
height: 38rpx;
}
</style>
- 发布:2023-03-03 09:17
- 更新:2023-03-03 09:17
- 阅读:285
产品分类: HbuilderX
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 13.2.1
HBuilderX版本号: 3.7.3
示例代码:
操作步骤:
使用MacOS 13.2.1 + Xcode 14.2 运行 APP 项目到 iOS 模拟器,滑动即可
使用MacOS 13.2.1 + Xcode 14.2 运行 APP 项目到 iOS 模拟器,滑动即可
预期结果:
滑动时流畅,可以有惯性滑动
滑动时流畅,可以有惯性滑动
实际结果:
滑动时卡顿,没有惯性
滑动时卡顿,没有惯性
bug描述:
滑动(拖动)时,没有惯性效果,拖动卡顿,以前在 MacOS 11 的时候不会