收藏
回答

小程序登录之后,后台没有保存小程序的登录状态?

小程序登录之后,后台没有保存小程序的登录状态,登录之后本应该是登录状态,但是在修改密码时就不是登录使用session保存的用户登录状态使用session保存的用户登录状态

回答关注问题邀请回答
收藏

1 个回答

  • ha!
    ha!
    2023-07-08
    <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>
    
    
    
    2023-07-08
    有用
    回复
登录 后发表内容