afterMarketList.js 1.7 KB
// pages/my/afterMarketList/afterMarketList.js
const app=getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
          orderList:null
  },
  //返回
  get_back(){
          wx.navigateBack({})
  },
  //渲染订单
  fetchOrderList(){
          var that=this
          let url ='/wxapp/order/index?status='+9
          app.post(url).then(r=>{
                  if(r.code==1){
                      r.data.forEach(function(ele,index){
                          ele.create_time = app.timeFormate(ele.create_time,'YYMMDDHHMM')
                      })
                          console.log(r)
                          that.setData({
                                  orderList:r.data
                          })
                  }
          })
  },
//进入售后订单详情
jump_unpay_detail(e) {
        let id = e.currentTarget.dataset.id
        wx.navigateTo({
                url: '../aftermarketDetail/aftermarketDetail?id=' + id,
        })
},

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
          this.fetchOrderList();
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})