index.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. const _Http = getApp().globalData.http;
  2. Component({
  3. data: {
  4. sa_logisticsid: 0,
  5. content: {
  6. nocache: true,
  7. pageNumber: 1,
  8. pageTotal: 1,
  9. total: null
  10. }
  11. },
  12. lifetimes: {
  13. attached: function () {
  14. getApp().globalData.Language.getLanguagePackage(this)
  15. this.setData({
  16. siteid: wx.getStorageSync('userMsg').siteid
  17. })
  18. }
  19. },
  20. methods: {
  21. getList(id, init) {
  22. let content = this.data.content;
  23. content.sa_logisticsid = id;
  24. if (init) content.pageNumber = 1;
  25. _Http.basic({
  26. "id": "20230111144504",
  27. content
  28. }).then(res => {
  29. console.log("装箱列表", res)
  30. if (res.code != '1') return wx.showToast({
  31. title: res.msg,
  32. icon: "none"
  33. })
  34. this.setData({
  35. list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
  36. "content.pageNumber": res.pageNumber + 1,
  37. "content.pageSize": res.pageSize,
  38. "content.pageTotal": res.pageTotal,
  39. "content.total": res.total,
  40. sa_logisticsid: id
  41. })
  42. })
  43. }
  44. }
  45. })