app.json
{
"window":{
"enablePullDownRefresh": true
}
}
index.js
Page({
onPullDownRefresh() {
wx.showLoading({
title: 'loading',
mask: true,
success: function(res) {},
fail: function(res) {},
complete: function(res) {
wx.hideLoading();
},
})
}
})