先找到报错所在位置,我的是在/node_modules/_mint-ui@2.2.13@mint-ui/lib/loadmore/index.js
下
然后找到合适的位置添加&& event.cancelable
if (typeof this.topMethod === 'function' && this.direction === 'down' &&
this.getScrollTop(this.scrollEventTarget) === 0 && this.topStatus !== 'loading' && event.cancelable)
if (typeof this.bottomMethod === 'function' && this.direction === 'up' &&
this.bottomReached && this.bottomStatus !== 'loading' && !this.bottomAllLoaded && event.cancelable)
这两个位置我都添加了。。。