之前真是没留意过,解决办法如下,手动加一个 停止刷新 的方法
//上拉刷新
onPullDownRefresh(){
Taro.showToast({
title:'',
icon:'loading',
duration:500
})
this.timerID = setTimeout(
() => Taro.stopPullDownRefresh(),
500
)
}
之前真是没留意过,解决办法如下,手动加一个 停止刷新 的方法
//上拉刷新
onPullDownRefresh(){
Taro.showToast({
title:'',
icon:'loading',
duration:500
})
this.timerID = setTimeout(
() => Taro.stopPullDownRefresh(),
500
)
}