const app = getApp();

Page({

  /**
   * 页面的初始数据
   */
  data: {
    page: 0,
    datalist: [],
    pageNum: 10,
    cover_type: false
  },
//  输入信息
  get_word(e) {
    this.setData({
      word: e.detail.value
    })
  },
  // 改变弹窗状态
  change_cover(e) {
    if (e.currentTarget.dataset.index){
      this.setData({
        index: e.currentTarget.dataset.index,
        id: e.currentTarget.dataset.id
      })
    }
    this.setData({
      cover_type: !this.data.cover_type
    })
  },
  getdatalist() {
    wx.showLoading({
      title: '加载中',
    })
    let that = this
    let head = {
      'XX-Token': wx.getStorageSync('token')
    }
    let url = that.data.type > 1 ? 'index/member_center/addTimeList' : 'index/member_center/admin';
    let params = {
      page: that.data.page,
      pageNum: that.data.pageNum
    }
    app.post(url, params, head).then((res) => {
      if (res.volunteer.length == 0) {
        that.setData({
          page_type: true
        })
      }
      if (that.data.page == 0) {
        that.setData({
          datalist: res.volunteer,
          page: res.page
        })
        wx.hideLoading()
      } else {
        setTimeout(() => {
          that.setData({
            datalist: that.data.datalist.concat(res.volunteer),
            page: res.page
          })
          wx.hideLoading()
        }, 1000)
      }
    }).catch((err) => {})

  },

//  添加时间
  add_time(){
    let that = this
    if (!that.data.word) {
      wx.showToast({
        title: '请输入工时',
        icon: 'none',
        duration: 1000
      })
      return
    }
    let url = 'index/member_center/addTime';
    let head = {
      'XX-Token': wx.getStorageSync('token')
    }
    let params = {
      user_id: that.data.id,
      add_time: that.data.word
    }
    app.post(url, params, head).then((res) => {
      wx.showToast({
        title: '操作成功',
        icon: 'success',
        duration: 1000,
        success: () => {
          that.setData({
            word: null,
            cover_type: false
          })
        }
      })
    }).catch((err) => { })
  },
  //通过
  pass(e) {
    this.update_status(e.currentTarget.dataset.id,e.currentTarget.dataset.index, 2)
  },
  //驳回
  reject() {
    if(!this.data.word){
      wx.showToast({
        title: '请填写不通过原因',
        icon: 'none',
        duration: 1000
      })
      return
    }
    this.update_status(this.data.id,this.data.index, 3)
  },
  // 通过,不通过接口
  update_status(id,index, status) {
    let that = this
    let datalist = that.data.datalist
    let url = 'index/member_center/update_status';
    let head = {
      'XX-Token': wx.getStorageSync('token')
    }
    let params = {
      id: id,
      status: status
    }
    if(status == 3){
      params.refund_reason = that.data.word
    }
    console.log(params)
    app.post(url, params, head).then((res) => {
      wx.showToast({
        title: '操作成功',
        icon: 'success',
        duration: 1000,
        success: () => {
          datalist.splice(index, 1)
          that.setData({
            datalist: datalist,
            word: null,
            cover_type: false
          })
        }
      })
    }).catch((err) => {})
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function(options) {
    this.setData({
      type: options.type
    })
    this.getdatalist()

  },

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

  },

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

  },

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

  },

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

  },

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

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function() {
    let that = this
    if (that.data.page_type) {
      wx.showToast({
        title: '暂无更多数据',
        icon: 'none'
      })
      return
    }
    that.getdatalist()
  },

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

  }
})