shezhimima.js 1.8 KB
// pages/myblock/shezhimima/shezhimima.js
const app=getApp()
Page({

  /**
   * 页面的初始数据
   */
  data: {
    url:'',
    password:''
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      url: app.globalData.url
    })

  },
  inputPass(e){
    this.setData({
      password: e.detail.value
    })
  },
  confirmPassWord(){
    let that=this;
    console.log(that.data.password)
    if (that.data.password==''){
      wx.showToast({
        title: '请输入密码',
        icon:'none'
      })
    }else{
      let params = {
        password: this.data.password
      }, url = '/user/Profile/set_password';
      if (params.password.length < 6) {
        wx.showToast({
          title: '请输入6位数以上的密码',
        })
      } else {
        app.post(url, params).then(r => {
          wx.showToast({
            title: '设置成功',
            duration: 1300
          })
          setTimeout(() => {
            wx.navigateBack({
            })
          }, 1200)
        }).catch((err) => {
          console.log(err)
        })
    }
   
    }
  },
  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

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

  },

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

  },

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

  },

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

  },

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

  },

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

  }
})