page.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. export default {
  2. data() {
  3. return {
  4. pageNum: 1,
  5. pageSize: 20,
  6. tableData: [],
  7. isEmpty: false,
  8. isRequest: false,
  9. isRefreshClear: true
  10. }
  11. },
  12. methods: {
  13. reset() {
  14. this.pageNum = 1
  15. if (this.isRefreshClear) {
  16. this.tableData = []
  17. }
  18. },
  19. async refresh(loading = false) {
  20. if (this.isRequest) return
  21. this.isRequest = true
  22. this.reset()
  23. const res = await this.loadData(loading)
  24. uni.stopPullDownRefresh()
  25. if (res && res.length > 0) {
  26. this.tableData = res
  27. this.pageNum++
  28. } else {
  29. this.tableData = []
  30. }
  31. this.isEmpty = !this.tableData || this.tableData.length === 0
  32. this.isRequest = false
  33. },
  34. async loadMore(loading = false) {
  35. if (this.isRequest || this.tableData.length <= 0) return
  36. if (this.tableData.length % this.pageSize > 0) return
  37. this.isRequest = true
  38. const res = await this.loadData(loading)
  39. if (res && res.length > 0) {
  40. this.tableData = this.tableData.concat(res)
  41. this.pageNum++
  42. }
  43. this.isEmpty = !this.tableData || this.tableData.length === 0
  44. this.isRequest = false
  45. }
  46. }
  47. }