小程序下拉loading效果

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();
    },
  })
  }
})

猜你喜欢

转载自blog.csdn.net/dofun333/article/details/80584740