xiugaimima.js 2.3 KB
// pages/myblock/xiugaimima/xiugaimima.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    oldpass:'',
    newpass:'',
    newpassque:'',
    passqueding:false
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {

  },
  //输入 原密码
  inputold(e){
    this.setData({
      oldpass:e.detail.value
    })
    this.panudanmima()
  },
  //输入新密码
  inputnew(e){
    this.setData({
      newpass:e.detail.value
    })
    this.panudanmima()
  },
  //输入确定密码
  inputnewque(e){
    this.setData({
      newpassque: e.detail.value
    })
    this.panudanmima()
  },

  panudanmima(){
    if (this.data.oldpass.length >= 6 && this.data.oldpass.length <= 20 && this.data.newpass.length >= 6 && this.data.newpass.length <= 20 && this.data.newpassque.length >= 6 && this.data.newpassque.length<=20){
      this.setData({
        passqueding:true
      })
    }else{
      this.setData({
        passqueding: false
      })
    }
  },
  //确认修改密码
  confirmPassWord(){

    let that = this;
    let url = 'user/Center/change_user_pwd', params = {
      old_password:that.data.oldpass,
      new_password:that.data.newpass,
      confirm_password:that.data.newpassque

    }
    app.post(url, params).then((res) => {
      console.log(res);
      wx.showToast({
        title: '修改成功',
        icon:'none'
      })

      setTimeout(function(){
        wx.navigateBack({
          checked:true
        })
      },1500)


    }).catch((err) => {
      wx.showToast({
        title: err.data.msg,
        icon:'none'
      })
      
    })
  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})