123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // pages/updatePassword/index.js
- const app = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- nvabarData: {
- showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
- showBack: 1, //返回
- title: '修改密码', //导航栏 中间的标题
- // 此页面 页面内容距最顶部的距离
- height: app.globalData.height * 2 + 20,
- },
- },
- formSubmit: function (e) {
- // console.log('form发生了submit事件,携带数据为:', e.detail.value);
- // 获取当前登录用户信息
- // console.log(wx.getStorageSync('user'))
- let user = wx.getStorageSync('user')
- // console.log('user',user._id)
- let password_new = e.detail.value.password_new
- let password_again = e.detail.value.password_again
- if (password_again != password_new) {
- // let pwdRegex = new RegExp('(?=.*[0-9])(?=.*[a-zA-Z])');
- // if (!pwdRegex.test(e.detail.value.password) || e.detail.value.password.length < 8 || e.detail.value.password.length >20) {
- // }
- wx.showToast({
- title: '密码不一致,请重新输入',
- icon: 'none',
- duration: 1500
- })
- }else{
- let pwdRegex = new RegExp('(?=.*[0-9])(?=.*[a-zA-Z])');
- if (!pwdRegex.test(password_again) || password_again.length < 8 || password_again.length >20) {
- wx.showModal({
- title: '提示',
- content: '密码格式错误',
- confirmText: '确定',
- success(res) {
- if (res.confirm) {
- // console.log('用户点击取消')
- } else if (res.cancel) {
- // console.log('用户点击取消')
- }
- }
- })
- }else{
- wx.request({
- method:"POST",
- url: app.globalData.publicUrl + 'api/financial/companyuser/uppasswd',
- data:{
- uid: user._id,
- newpasswd: e.detail.value.password_new,
- oldpasswd: e.detail.value.password_old
- },
- success:(e) => {
- // console.log('success',e);
- if(e.data.errcode == 0){
- wx.showToast({
- title: '密码修改成功',
- icon: 'none',
- duration: 1500
- })
- wx.redirectTo({
- url: '/pages/home/index'
- })
- } else {
- wx.showToast({
- title: e.data.details?e.data.details:e.data.errmsg,
- icon: 'none',
- duration: 1500
- })
- }
- }
- })}
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- // console.log(JSON.stringify(wx.getStorageSync('user')))
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|