问题复现: 顶部分类可以滑动到另一个分类用的scroll-view,图中圈中部分仅仅只是一个小区域横向滑动,不需要滑动到尽头切换分类, 解决方法: <scroll-view class="fdlist" scroll-x="true" catchtouchmove='catchTouchMove'> 在scroll-view中加入catchtouchmove事件, 在js中加入这个函数 catchTouchMove: function() { return false; },