bug說明:node
Mint-ui中loadmore(上拉加載下拉刷新)組件 在 使用fastclick的狀況下ios
,在ios設備中滑動會觸發點擊事件;ui
解決方法:this
我是按需引入,去項目中找到loadmore下的index.js,所有引入的要找mint下面mint-ui.common.jsspa
路徑以下:你的項目名/node_modules\mint-ui\lib\loadmore\index.js事件
搜索 handleTouchEnd ,記得寫event進去get
handleTouchEnd: function handleTouchEnd(event) {...}
而後在down和up兩個事件中加入 我標註的紅字便可!io
if (this.direction === 'down' && this.getScrollTop(this.scrollEventTarget) === 0 && this.translate > 0) {
event.preventDefault();
event.stopPropagation();
...
if (this.direction === 'up' && this.bottomReached && this.translate < 0) {
event.preventDefault();
event.stopPropagation();
...
困擾了好久終於搞定,一樣遇到這個問題的小夥伴能夠照個人方法去作了!!