使用scroll-view中的show-scrollbar属性 注意:需要搭配enhanced使用 否则无效
<scroll-view class="contentshow" scroll-y :show-scrollbar='true' :enhanced='true'><view class="content" :show-scrollbar='true'><text>{{vehicleCartinfo}}</text></view></scroll-view>
滚动条样式自定义
注意:此代码在ios情况下滚动条需要滑动时才显示并且不滑动过后就会隐藏
安卓情况下正常显示
/deep/ .u-transition {z-index: 19999 !important;}// 滚动条样式/deep/ ::-webkit-scrollbar {/*滚动条整体样式*/width: 2px !important;height: 1px !important;background: #ccc !important;display: block !important;}/deep/ ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/border-radius: 10px;box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);background-color: #bfbfbf;}/deep/ ::-webkit-scrollbar-track {background: #f0f0f0;}