<view class="vod-body">
<view class="vod-body--item" @scroll="scroll">
<view v-for="index in 500">{{index}}</view>
</view>
</view>
function scroll(d){
console.log(d);
}
.vod-body {
height: 360px;
overflow: hidden;
}
.vod-body--item {
height: 100%;
overflow: auto;
white-space: nowrap;
}