index.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // pages/home/index.js
  2. const imageCdn = 'https://tdesign.gtimg.com/miniprogram/images/';
  3. const swiperList = [
  4. `${imageCdn}/swiper1.png`,
  5. `${imageCdn}/swiper2.png`,
  6. `${imageCdn}/swiper3.png`,
  7. `${imageCdn}/swiper4.png`,
  8. `${imageCdn}/swiper5.png`,
  9. ];
  10. const app = getApp()
  11. import api from '../api/api'
  12. Page({
  13. /**
  14. * 页面的初始数据
  15. */
  16. data: {
  17. current: 0,
  18. autoplay: false,
  19. duration: 500,
  20. interval: 5000,
  21. swiperList,
  22. list: [],
  23. pageNumber: 1,
  24. pageSize: 20,
  25. status: '待接单'
  26. },
  27. async listData() {
  28. const res = await api._post({
  29. "id": "20230208140203",
  30. "version": 1,
  31. "content": {
  32. "pageNumber": this.data.pageNumber,
  33. "pageSize": this.data.pageSize,
  34. "where": {
  35. "status": this.data.status,
  36. "condition": ""
  37. }
  38. }
  39. })
  40. if (res.data.length === 0) return false
  41. this.setData({
  42. list: this.data.list.concat(res.data)
  43. })
  44. },
  45. onTabsChange(e) {
  46. this.data.status = e.detail.label
  47. this.onPullDownRefresh()
  48. },
  49. onLoad(options) {
  50. this.listData()
  51. },
  52. onPullDownRefresh() {
  53. this.setData({
  54. pageNumber: 1,
  55. list: []
  56. })
  57. this.listData()
  58. },
  59. onReachBottom() {
  60. this.data.pageNumber++
  61. this.setData({
  62. pageNumber: this.data.pageNumber,
  63. })
  64. this.listData()
  65. },
  66. })