loadData.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. export default (options) => {
  2. const {
  3. api,
  4. mapKey = { listTotal: 'total', list: 'list', pageSize: 'pageSize' },
  5. beforeFn,
  6. afterFn,
  7. callingcb,
  8. beforeReachBottomfn,
  9. afterReachBottomfn,
  10. dataFn
  11. } = options
  12. return {
  13. data() {
  14. return {
  15. _query: {
  16. page: 1,
  17. [mapKey.pageSize]: 20
  18. },
  19. _listTotal: 0,
  20. _list: [],
  21. _isEmpty: false,
  22. _scrollTop: 0
  23. }
  24. },
  25. methods: {
  26. async _loadData(isLoadmore, cb) {
  27. let res = null
  28. try {
  29. if (beforeFn && typeof beforeFn === 'function' && beforeFn()) {
  30. res = await api(this.$data._query)
  31. } else {
  32. res = await api(this.$data._query)
  33. }
  34. this.$data._listTotal = res.data[mapKey.listTotal] || 0
  35. if (isLoadmore) {
  36. this.$data._list = [
  37. ...this.$data._list,
  38. ...dataFn
  39. ? dataFn(res.data[mapKey.list] || [])
  40. : res.data[mapKey.list] || []
  41. ]
  42. } else {
  43. this.$data._list = dataFn
  44. ? dataFn(res.data[mapKey.list] || [])
  45. : res.data[mapKey.list] || []
  46. }
  47. if (this.$data._list.length === 0) this.$data._isEmpty = true
  48. !isLoadmore && afterFn && typeof afterFn === 'function' && afterFn()
  49. !isLoadmore && callingcb && cb && typeof cb === 'function' && cb()
  50. isLoadmore && cb && typeof cb === 'function' && cb()
  51. } catch (error) {
  52. this.$data._isEmpty = true
  53. console.log('报错了', error)
  54. }
  55. }
  56. },
  57. onReachBottom() {
  58. if (
  59. beforeReachBottomfn &&
  60. typeof beforeReachBottomfn === 'function' &&
  61. !beforeReachBottomfn()
  62. ) {
  63. return
  64. }
  65. if (this.$data._list.length < this.$data._listTotal) {
  66. ++this.$data._query.page
  67. this._loadData(true, afterReachBottomfn)
  68. }
  69. },
  70. onPageScroll(e) {
  71. this.$data._scrollTop = e.scrollTop
  72. }
  73. }
  74. }