charger_code.js 2.2 KB
// pages/my/charger_code/charger_code.js
const app=getApp();
Page({

  /**
   * 页面的初始数据
   */
  data: {
          imgUrl: app.globalData.imgUrl,
          slideUrl:'',
          code:''
  },
  //号码
fromCode(e){
        this.setData({
                code:e.detail.value
        })
},
  //获取兑换码
  fetchRedeemCode(){
          let url ='/wxapp/user/redeem';
          app.post(url).then(r=>{
                  this.setData({
                          slideUrl: r.data.slideUrl
                  });
          });
  },
  fetch(){
          let url ='/wxapp/user/redeemCheck'
          app.post(url).then(r=>{
                  console.log(r);
          });
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
          this.fetchRedeemCode();
          this.fetch();
  },
  // 返回个人中心
  get_my(){
    wx.navigateBack({})
  },
  // 确认兑换
  getaffirm_exchange(){
          let url ='/wxapp/user/redeemCheck'
          let code=this.data.code
          let params={
                  code:code
          }
          app.post(url,params).then(r=>{
                  if(r.code==1){
                          wx.showToast({
                                  title: '兑换成功',
                                  icon:'none'
                          })
                  }else{
                          wx.showToast({
                                  title: '兑换失败',
                                  icon:'none'
                          })
                  }
          })
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {
  
  },

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

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

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

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

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

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