pull-down-refresh.js 221 B

123456789101112
  1. Page({
  2. onPullDownRefresh() {
  3. console.log('onPullDownRefresh', new Date())
  4. },
  5. stopPullDownRefresh() {
  6. my.stopPullDownRefresh({
  7. complete(res) {
  8. console.log(res, new Date())
  9. }
  10. })
  11. }
  12. })