key="count"
<view
class=""
style="height: 150px;"
@click="count = count === 19 ? 2 : 19"
点击修改item数量 会有明显的减少闪烁,item样式越复杂越明显</view
<view
class="swiper-item"
<text>12121dsfsd</text>
<text>sdfsdfsf</text>
<text>sdfsdfsdfsd</text>
<text>{{ item }}</text>
</view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
scrollIntoView: '',
navTop: 0,
count: 19
};
},
methods: {
scrollHandler(e) {
const n = 50 / 1650;
const navTop = n * e.detail.scrollTop;
this.navTop = navTop >= 50 ? 50 : navTop;
},
gotoA() {
this.scrollIntoView = '';
this.$nextTick(() => {
this.scrollIntoView = 'item1';
});
}
}
};
</script>
<style>
page {
height: 100% !important;
overflow: hidden;
display: flex;
flex-direction: column;
}
.flex-1 {
flex: 1;
overflow: hidden;
}
.swiper-item {
/ height: 150px; /
}
</style>
4 个回复
刘家后人 (作者)
DCloud_UNI_GSQ
后续会排查优化,先尝试将 nvueStyleCompiler 设置为 weex:https://uniapp.dcloud.io/collocation/manifest.html#app-plus
刘家后人 (作者)
不太行 weex模式 样式全乱了
2022-04-29 19:43
DCloud_UNI_GSQ
HBuilderX alpha 3.4.10+ 已经修复
黑讯科技
这个问题并没有修复啊,为什么我的目前还是一样的问题
黑讯科技
我是IOS的
2022-10-28 17:33
黑讯科技
回复 5***@qq.com: 经反复测试,只要引入uni-rate组件之后 就会有闪烁现象,不引入则没有
2022-10-30 18:49