myOrder.js 2.1 KB
const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    navbar: [{
      name: '全部'
    },
    {
      name: '待付款'
    },
    {
      name: '待拼团'
    },
    {
      name: '待发货'
    },
    {
      name: '待完成'
    },
    {
      name: '待评价'
    },
    {
      name: '已完成'
    },
    {
      name: '已取消'
    }
    ],
    currentTab: 0,
    orderList:'',
    page:1,
    status:0
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.myOrder()
  },
  // 我的订单
  myOrder() {
    let that = this;
    let url = '/user/index/myOrder';
    let params = {
        page:that.data.page,
      status:that.data.status

    }
    let header = {
      "XX-Token": '123123',
      "XX-Device-Type": 'wxapp'
    }
    app.post(url, params, header).then((res) => {
      console.log(res);
      // 列表值
      that.setData({
        orderList: res.list
      })

     



    }).catch((err) => {

    })
  },


  navbarTap: function (e) {
    console.log(88)
    let that = this;
    that.setData({
      currentTab: e.currentTarget.dataset.idx,
    })
    if(that.data.currentTab==0){
        that.setData({
          status:0,
          page: 1,
           orderList:[]
        })

      that.myOrder()
    }
  },
      //评价按钮
  btn_eOrder(){
    wx.navigateTo({
      url: '/pages/mine/eOrder/eOrder',
    })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {
    
  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {
    
  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {
    
  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {
    
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    
  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {
    
  }
})