pages.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 listFormat = list.map(item => {
  53. if (that.data.listUrl === '/api/user/goods/shop/list') {
  54. return {
  55. ...item,
  56. shop_address: item.shop_address ? JSON.parse(item.shop_address) : {}
  57. }
  58. }
  59. return {
  60. ...item
  61. }
  62. })
  63. const _list = isRefresh ? [].concat(listFormat) : that.data.listData.concat(listFormat)
  64. const temp = {
  65. listData: _list,
  66. finished: list.length < that.data.pagesize,
  67. isRefresh: false,
  68. isFetchLock: false,
  69. pagenum: that.data.pagenum + 1
  70. }
  71. if (isRefresh && this.data.hasOwnProperty('leftList')) {
  72. temp['leftList'] = []
  73. temp['rightList'] = []
  74. }
  75. that.setData(temp, () => {
  76. if (that.isLeft) {
  77. that.isLeft(list)
  78. }
  79. })
  80. }
  81. } else {
  82. wx.showToast({
  83. title: msg,
  84. icon: 'none'
  85. })
  86. }
  87. } catch (e) {}
  88. if (that.data.freshing) {
  89. that.setData({
  90. freshing: false
  91. })
  92. }
  93. if (isRefresh && wx.stopPullDownRefresh) {
  94. wx.stopPullDownRefresh()
  95. }
  96. },
  97. refreshOrderList() {
  98. this.setData({
  99. pagenum: 1,
  100. pagesize: 20,
  101. finished: false,
  102. isRefresh: true,
  103. isFetchLock: false
  104. }, () => {
  105. this.fetchOrderList()
  106. })
  107. }
  108. }
  109. }