最佳解决方案
app端
app-plus设置属性'scrollIndicator': 'none'
页面最外层用scroll-view组件包住,并在app.vue写css,如下
html
<template> <scroll-view scroll-y="true"> <view>页面内容</view> </scroll-view> </template>
css
::-webkit-scrollbar {width: 0px; height: 0px;color: transparent;}
小程序
页面最外层用scroll-view组件包住,并在app.vue写css,如下
html
<template> <scroll-view scroll-y="true"> <view>页面内容</view> </scroll-view> </template>
css
::-webkit-scrollbar {width: 0px; height: 0px;color: transparent;}