pages.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. const { request } = require('../api/request')
  2. const { debounce } = require('../utils/util')
  3. module.exports = {
  4. data() {
  5. return {
  6. pagenum: 1,
  7. pagesize: 20,
  8. finished: false, // 所有数据是否加载完
  9. isRefresh: false, // 是否下拉刷新
  10. isFetchLock: false, // 接口调用加锁
  11. listData: [],
  12. freshing: false
  13. }
  14. },
  15. methods: {
  16. handleKeyWords: debounce(function (event) {
  17. const { formkey } = event.target.dataset
  18. if (formkey) {
  19. this.setData({
  20. [`searchForm.${formkey}`]: event.detail.value
  21. }, () => {
  22. this.refreshOrderList()
  23. })
  24. }
  25. }, 2000),
  26. async fetchOrderList() {
  27. const that = this
  28. const isRefresh = that.data.isRefresh
  29. if (that.data.finished) {
  30. return
  31. }
  32. if (that.data.isFetchLock) {
  33. return
  34. }
  35. that.setData({
  36. isFetchLock: true
  37. })
  38. try {
  39. const { status, data, msg } = await request({
  40. url: that.data.listUrl,
  41. method: 'POST',
  42. data: {
  43. 'page': that.data.pagenum,
  44. 'page_size': that.data.pagesize,
  45. ...that.data.searchForm
  46. },
  47. showLoading: false
  48. })
  49. if (status) {
  50. const { list } = data
  51. if (Array.isArray(list)) {
  52. const _list = isRefresh ? [].concat(list) : that.data.listData.concat(list)
  53. const temp = {
  54. listData: _list,
  55. finished: list.length < that.data.pagesize,
  56. isRefresh: false,
  57. isFetchLock: false,
  58. pagenum: that.data.pagenum + 1
  59. }
  60. if (isRefresh && this.data.hasOwnProperty('leftList')) {
  61. temp['leftList'] = []
  62. temp['rightList'] = []
  63. }
  64. that.setData(temp, () => {
  65. if (that.isLeft) {
  66. that.isLeft(list)
  67. }
  68. })
  69. }
  70. } else {
  71. wx.showToast({
  72. title: msg,
  73. icon: 'none'
  74. })
  75. }
  76. } catch (e) {}
  77. if (that.data.freshing) {
  78. that.setData({
  79. freshing: false
  80. })
  81. }
  82. if (isRefresh && wx.stopPullDownRefresh) {
  83. wx.stopPullDownRefresh()
  84. }
  85. },
  86. refreshOrderList() {
  87. this.setData({
  88. pagenum: 1,
  89. pagesize: 20,
  90. finished: false,
  91. isRefresh: true,
  92. isFetchLock: false
  93. }, () => {
  94. this.fetchOrderList()
  95. })
  96. }
  97. }
  98. }