pages.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. // VR看菜园:轮播图只取前三个
  72. if (that.data.listUrl === '/api/user/vr/list') {
  73. temp['topSwiperData'] = _list.slice(0, 3)
  74. temp['listData'] = _list.filter((item, index) => index > 2)
  75. }
  76. if (isRefresh && this.data.hasOwnProperty('leftList')) {
  77. temp['leftList'] = []
  78. temp['rightList'] = []
  79. }
  80. that.setData(temp, () => {
  81. if (that.isLeft) {
  82. that.isLeft(list)
  83. }
  84. })
  85. }
  86. } else {
  87. wx.showToast({
  88. title: msg,
  89. icon: 'none'
  90. })
  91. }
  92. } catch (e) {}
  93. if (that.data.freshing) {
  94. that.setData({
  95. freshing: false
  96. })
  97. }
  98. if (isRefresh && wx.stopPullDownRefresh) {
  99. wx.stopPullDownRefresh()
  100. }
  101. },
  102. refreshOrderList() {
  103. this.setData({
  104. pagenum: 1,
  105. pagesize: 20,
  106. finished: false,
  107. isRefresh: true,
  108. isFetchLock: false
  109. }, () => {
  110. this.fetchOrderList()
  111. })
  112. }
  113. }
  114. }