index.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. const imageCdn = 'https://tdesign.gtimg.com/miniprogram/images/';
  2. const swiperList = [
  3. `${imageCdn}/swiper1.png`,
  4. `${imageCdn}/swiper2.png`,
  5. `${imageCdn}/swiper3.png`,
  6. `${imageCdn}/swiper4.png`,
  7. `${imageCdn}/swiper5.png`,
  8. ];
  9. const app = getApp()
  10. import api from '../api/api'
  11. Page({
  12. data: {
  13. current: 0,
  14. autoplay: false,
  15. duration: 500,
  16. interval: 5000,
  17. swiperList,
  18. list: [],
  19. pageNumber: 1,
  20. pageSize: 20,
  21. status: '待接单',
  22. statistics: {}
  23. },
  24. /* 去详情 */
  25. toDetail(e) {
  26. console.log(e)
  27. const {
  28. item
  29. } = e.currentTarget.dataset;
  30. wx.navigateTo({
  31. url: (item.team.some(v => v.userid == wx.getStorageSync('userMsg').userid) ? '/Eservice/workOrderDetail/index' : '/Eservice/workerLeader/editworkOrderDetail/index') + '?id=' + item.sa_workorderid,
  32. })
  33. },
  34. async listData() {
  35. const res = await api._post({
  36. "id": "20230208140203",
  37. "version": 1,
  38. "content": {
  39. "pageNumber": this.data.pageNumber,
  40. "pageSize": this.data.pageSize,
  41. "where": {
  42. "status": this.data.status,
  43. "condition": ""
  44. }
  45. }
  46. })
  47. console.log(res)
  48. this.setData({
  49. statistics: res.data[0].rows_total[0]
  50. })
  51. if (!res.data[0].billno) return false;
  52. this.setData({
  53. list: this.data.pageNumber == 1 ? res.data : this.data.list.concat(res.data)
  54. })
  55. console.log(this.data.statistics)
  56. },
  57. onTabsChange(e) {
  58. this.data.status = e.detail.value;
  59. this.onPullDownRefresh()
  60. },
  61. onLoad(options) {
  62. this.listData()
  63. this.setData({
  64. loadingTexts: ['下拉刷新', '松手刷新', '正在刷新', '刷新完成'].map(v => getApp().globalData.Language.getMapText(v))
  65. })
  66. getApp().globalData.Language.getLanguagePackage(this'E-订单');
  67. },
  68. onShow() {
  69. this.setData({
  70. pageNumber: 1,
  71. })
  72. this.listData()
  73. },
  74. onPullDownRefresh() {
  75. this.setData({
  76. pageNumber: 1,
  77. list: []
  78. })
  79. this.listData()
  80. },
  81. onReachBottom() {
  82. this.data.pageNumber++
  83. this.setData({
  84. pageNumber: this.data.pageNumber,
  85. })
  86. this.listData()
  87. },
  88. })