changemima.js 1.6 KB
// pages/mine/changemima/changemima.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    sure: true,
    oldpassword: '',
    newpassword: '',
    surepassword: ''
  },

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

  },
  //输入旧密码

  enterold(e) {
    let that=this;
    console.log(e.detail.value)
    this.setData({
      oldpassword: e.detail.value
    })
    
    
   this.panduan()
  },
  //输入新密码
  enternew(e) {
    this.setData({
      newpassword: e.detail.value
    })

    
    this.panduan()
  },

  //确认密码
  quenew(e) {
    this.setData({
      surepassword: e.detail.value
    })
    
    this.panduan()
  },
  // 判断
  panduan() {
    let that=this
    if (this.data.oldpassword.length>0&&this.data.newpassword.length>0&&this.data.surepassword.length>0){
    this.setData({
      sure:false
    })
    }else{
      this.setData({
        sure: true
      })
    }
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function() {

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})