小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序登录之后,后台没有保存小程序的登录状态,登录之后本应该是登录状态,但是在修改密码时就不是登录使用session保存的用户登录状态使用session保存的用户登录状态
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<script> export default { data() { return { oldpwd:'', xpw:'', newpwd:'', showZpw: false, }; }, methods:{ onChange(key,event){ this[key]=event.detail }, submit(){ if (!this.oldpwd || !this.xpw || !this.newpwd) { uni.showToast({ title: '输入不能为空', icon: 'none', duration: 2000 }); return; } if (this.xpw !== this.newpwd) { uni.showToast({ title: '新密码和确认密码不一致', icon: 'none', duration: 2000 }); return; } uni.request({ url:'https://weixin.sskh.net/api/password/modify', header: { "content-type": "application/x-www-form-urlencoded", }, data: { oldpwd: this.oldpwd, newpwd: this.newpwd, }, success(res){ console.log(res); uni.showModal({ title: '提示', content: '修改密码成功', success(res) { if (res==0) { console.log('用户点击了确定按钮'); uni.showToast({ title:'修改密码成功', icon:'none', }) uni.reLaunch({ url:'/pages/mine/mine', }); } else if (res.cancel) { console.log('用户点击了取消按钮'); }else{ } } }); }, fail(error) { console.log(error); uni.showToast({ title:'服务器错误', icon:'none' }) } }) }, back(){ uni.reLaunch({ url:'/pages/mine/mine' }) }, }, } </script>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<script> export default { data() { return { oldpwd:'', xpw:'', newpwd:'', showZpw: false, }; }, methods:{ onChange(key,event){ this[key]=event.detail }, submit(){ if (!this.oldpwd || !this.xpw || !this.newpwd) { uni.showToast({ title: '输入不能为空', icon: 'none', duration: 2000 }); return; } if (this.xpw !== this.newpwd) { uni.showToast({ title: '新密码和确认密码不一致', icon: 'none', duration: 2000 }); return; } uni.request({ url:'https://weixin.sskh.net/api/password/modify', header: { "content-type": "application/x-www-form-urlencoded", }, data: { oldpwd: this.oldpwd, newpwd: this.newpwd, }, success(res){ console.log(res); uni.showModal({ title: '提示', content: '修改密码成功', success(res) { if (res==0) { console.log('用户点击了确定按钮'); uni.showToast({ title:'修改密码成功', icon:'none', }) uni.reLaunch({ url:'/pages/mine/mine', }); } else if (res.cancel) { console.log('用户点击了取消按钮'); }else{ } } }); }, fail(error) { console.log(error); uni.showToast({ title:'服务器错误', icon:'none' }) } }) }, back(){ uni.reLaunch({ url:'/pages/mine/mine' }) }, }, } </script>