loadData.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. }
  23. },
  24. methods: {
  25. async _loadData(isLoadmore, cb) {
  26. let res = null
  27. try {
  28. if (beforeFn && typeof beforeFn === 'function' && beforeFn()) {
  29. res = await api(this.$data._query)
  30. } else {
  31. res = await api(this.$data._query)
  32. }
  33. this.$data._listTotal = res.data[mapKey.listTotal] || 0
  34. if (isLoadmore) {
  35. this.$data._list = [
  36. ...this.$data._list,
  37. ...dataFn
  38. ? dataFn(res.data[mapKey.list] || [])
  39. : res.data[mapKey.list] || []
  40. ]
  41. } else {
  42. this.$data._list = dataFn
  43. ? dataFn(res.data[mapKey.list] || [])
  44. : res.data[mapKey.list] || []
  45. }
  46. this.$data._isEmpty = this.$data._list.length === 0
  47. !isLoadmore && afterFn && typeof afterFn === 'function' && afterFn()
  48. !isLoadmore && callingcb && cb && typeof cb === 'function' && cb()
  49. isLoadmore && cb && typeof cb === 'function' && cb()
  50. } catch (error) {
  51. this.$data._isEmpty = true
  52. console.log('报错了', error)
  53. }
  54. }
  55. },
  56. onReachBottom() {
  57. if (
  58. beforeReachBottomfn &&
  59. typeof beforeReachBottomfn === 'function' &&
  60. !beforeReachBottomfn()
  61. ) {
  62. return
  63. }
  64. if (this.$data._list.length < this.$data._listTotal) {
  65. ++this.$data._query.page
  66. this._loadData(true, afterReachBottomfn)
  67. }
  68. },
  69. onPageScroll(e) {
  70. this.$data._scrollTop = e.scrollTop
  71. }
  72. }
  73. }