refund-after.js 2.1 KB
// pages/all-order/all-order.js
let method = require("../../utils/reuqest.js");
// const {
//   ContactEdit
// } = require("vant");
Page({
  data: {
    index: '',
    active: 2,
    status: '',
    orederId: '',
    goodsid: '',
    tabList: [],
    totalList: [],
    payList: [],
    sendList: [],
    evaluateList: [],
    reapList: [],
    orderid: '',
    bottomHint: false //触底提示
  },
  //订单详情
  orderDetail(e) {
    let orderId = e.currentTarget.dataset.orderid
    wx.navigateTo({
      url: '/pages/order-detail/order-detail?orderId=' + orderId + "&flag=" + "true",
    })
  },


  //待退款
  refunds() {
    let postData = {
      page: 1,
      size: 10,
      type: 6
    }
    method.postRequest("/order/list", postData, data => {
      wx.stopPullDownRefresh()
      if (data.statusCode == 0) {
        this.setData({
          tabList: data.data
        })
        let list = this.data.tabList;
        list.forEach((item, index) => {
          item.payAmount=item.payAmount.toFixed(2)
        })
        this.setData({
          tabList:list
        })
      }
    })
  },
  onLoad: function (options) {
    let that = this;
    //退款
    that.refunds()
  },

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

  },

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

  },

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

  },

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

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onRefresh() {
    this.setData({
      page: 1,
      tabList: []
    })
    this.refunds();
  },
  onPullDownRefresh: function () {
    this.onRefresh()
  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {
    this.setData({
      bottomHint: true
    })
    setTimeout(() => {
      this.setData({
        bottomHint: false
      })
    }, 2000)
  },

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

  }
})