pages.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. if (that.data.listUrl === '/api/user/track/list') {
  60. return {
  61. ...item,
  62. track_img_url: item.track_img_url ? JSON.parse(item.track_img_url) : {}
  63. }
  64. }
  65. return {
  66. ...item
  67. }
  68. })
  69. const _list = isRefresh ? [].concat(listFormat) : that.data.listData.concat(listFormat)
  70. const temp = {
  71. listData: _list,
  72. finished: list.length < that.data.pagesize,
  73. isRefresh: false,
  74. isFetchLock: false,
  75. pagenum: that.data.pagenum + 1
  76. }
  77. // VR看菜园:轮播图只取前三个
  78. if (that.data.listUrl === '/api/user/vr/list') {
  79. temp['topSwiperData'] = _list.slice(0, 3)
  80. temp['listData'] = _list.filter((item, index) => index > 2)
  81. }
  82. if (isRefresh && this.data.hasOwnProperty('leftList')) {
  83. temp['leftList'] = []
  84. temp['rightList'] = []
  85. }
  86. that.setData(temp, () => {
  87. if (that.isLeft) {
  88. that.isLeft(list)
  89. }
  90. })
  91. }
  92. } else {
  93. wx.showToast({
  94. title: msg,
  95. icon: 'none'
  96. })
  97. }
  98. } catch (e) {}
  99. if (that.data.freshing) {
  100. that.setData({
  101. freshing: false
  102. })
  103. }
  104. if (isRefresh && wx.stopPullDownRefresh) {
  105. wx.stopPullDownRefresh()
  106. }
  107. },
  108. refreshOrderList() {
  109. this.setData({
  110. pagenum: 1,
  111. pagesize: 20,
  112. finished: false,
  113. isRefresh: true,
  114. isFetchLock: false
  115. }, () => {
  116. this.fetchOrderList()
  117. })
  118. }
  119. }
  120. }