uniapp ucharts 不跟随scroll-view 滚动
时间: 2023-09-05 18:11:59 浏览: 323
uniapp scroll-view 横向和纵向滚动 带滚动回调
根据引用[1]中提到的API,可以使用wx.pageScrollTo()来实现页面滚动,并且可以使用onPageScroll()来监听页面滚动事件。而根据引用[2]中提到的问题,如果在弹层中添加@touchmove.stop.prevent,可以阻止页面跟随滚动。另外,根据引用[3]中的代码,可以在app.vue文件的onLaunch和onShow生命周期函数中使用uni.hideTabBar()来隐藏底部导航栏。所以,如果你想让ucharts图表不跟随scroll-view滚动,你可以在scroll-view中添加@touchmove.stop.prevent来阻止页面滚动,并且在app.vue文件的onLaunch和onShow生命周期函数中使用uni.hideTabBar()来隐藏底部导航栏。
阅读全文