navigationStyle 为 custom时 uni.pageScrollTo滚动的时候位置不对 大概相差60px距离 这个怎么解决
1***@qq.com
- 发布:2023-09-20 15:41
- 更新:2024-02-01 14:26
- 阅读:411
喜欢技术的前端 - QQ---445849201
刚试了,倒是没发现,可以检查是不是样式 什么影响了
<template>
<view>
<view>
滑动到底部,点击按钮
</view>
<view v-for="(item,index) in 5" :key="index">
<image src="/static/logo.png" mode=""></image>
</view>
<button @click="scrollTop">scrollTop</button>
</view>
</template>
<script>
export default {
data() {
return {
text: '3333',
};
},
onReady() {
},
methods: {
scroll(){
uni.pageScrollTo({
scrollTop: 99999,
duration: 300
});
},
scrollTop(){
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
}
}
}
</script>
<style>
</style>
1***@qq.com (作者)
没有解决,至今还是这样 ,只能使用自带的nav
2024-02-23 17:49