loadMore.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. export default (options) => {
  2. const {
  3. api,
  4. mapKey = { totalPages: "totalPages", list: "goodsList", size: "size" },
  5. beforeFn,
  6. afterFn,
  7. beforeReachBottomfn,
  8. afterReachBottomfn,
  9. dataFn,
  10. } = options;
  11. return {
  12. data() {
  13. return {
  14. _query: {
  15. page: 1,
  16. [mapKey.size]: 20,
  17. },
  18. _status: "none",
  19. _totalPages: 0,
  20. _list: [],
  21. _scrollTop: 0,
  22. };
  23. },
  24. methods: {
  25. async _loadData(isLoadmore, cb) {
  26. try {
  27. let res = null;
  28. this.$data._status = "loading";
  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._totalPages = res.data[mapKey.totalPages];
  35. if (isLoadmore) {
  36. this.$data._list = [
  37. ...this.$data._list,
  38. ...(dataFn ? dataFn.bind(this)(res.data[mapKey.list]) : res.data[mapKey.list]),
  39. ];
  40. } else {
  41. this.$data._list = dataFn
  42. ? dataFn.bind(this)(res.data[mapKey.list])
  43. : res.data[mapKey.list];
  44. }
  45. // console.log("list数据", this.$data._list);
  46. !isLoadmore && afterFn && typeof afterFn === "function" && afterFn();
  47. isLoadmore && cb && typeof cb === "function" && cb();
  48. // console.log(this.$data._list)
  49. } catch (error) {
  50. console.log("报错了", error);
  51. } finally {
  52. this.$data._status = "none";
  53. }
  54. },
  55. },
  56. onReachBottom() {
  57. if (
  58. beforeReachBottomfn &&
  59. typeof beforeReachBottomfn === "function" &&
  60. !beforeReachBottomfn()
  61. ) {
  62. return;
  63. }
  64. if (this.$data._query.page >= this.$data._totalPages) {
  65. this.$data._status = "no-more";
  66. return;
  67. }
  68. if (this.$data._query[mapKey.size] > this.$data._list.length) {
  69. this.$data._status = "none";
  70. return;
  71. }
  72. this.$data._query.page++;
  73. this._loadData(true, afterReachBottomfn);
  74. },
  75. onPageScroll(e) {
  76. this.$data._scrollTop = e.scrollTop;
  77. },
  78. };
  79. };