historyOrder.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import { get } from "../../utils/http"
  2. // pages/historyOrder/historyOrder.js
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. list: [],
  9. total: 0,
  10. page: 1,
  11. user_id: '',
  12. detail: {}
  13. },
  14. /**
  15. * 生命周期函数--监听页面加载
  16. */
  17. onLoad: function (options) {
  18. console.log(options)
  19. if(options.user_id) {
  20. this.setData({
  21. user_id: options.user_id,
  22. detail: JSON.parse(options.detail)
  23. },() => {
  24. this.getHistoryOrder()
  25. })
  26. }
  27. },
  28. /**
  29. * 生命周期函数--监听页面初次渲染完成
  30. */
  31. onReady: function () {
  32. },
  33. /**
  34. * 生命周期函数--监听页面显示
  35. */
  36. onShow: function () {
  37. },
  38. /**
  39. * 生命周期函数--监听页面隐藏
  40. */
  41. onHide: function () {
  42. },
  43. /**
  44. * 生命周期函数--监听页面卸载
  45. */
  46. onUnload: function () {
  47. },
  48. /**
  49. * 页面相关事件处理函数--监听用户下拉动作
  50. */
  51. onPullDownRefresh: function () {
  52. },
  53. /**
  54. * 页面上拉触底事件的处理函数
  55. */
  56. onReachBottom: function () {
  57. if(this.data.page * 10 < this.data.total) {
  58. this.getHistoryOrder(++this.data.page)
  59. }
  60. },
  61. /**
  62. * 用户点击右上角分享
  63. */
  64. onShareAppMessage: function () {
  65. },
  66. /**
  67. * 获取历史订单
  68. * api/order/history
  69. */
  70. getHistoryOrder() {
  71. let { page,list,user_id,detail } = this.data;
  72. let month = detail.month
  73. let date = detail.date
  74. get('api/order/history',{
  75. user_id,
  76. day: `${detail.year}-${month < 10 ? '0'+month : month}-${date < 10 ? '0'+date : date}`,
  77. page,
  78. limit: 10
  79. },(res) => {
  80. list.push(...res.data.list)
  81. this.setData({ list,total: res.data.total, })
  82. })
  83. }
  84. })