Browse Source

解决当登录成功后,页面跳转错误的问题。(从登录页面入口,没有前一个页面可以跳转的情况)

raolu 6 years ago
parent
commit
3fb5c1766e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      component/login-register/login.js

+ 2 - 2
component/login-register/login.js

@ -249,8 +249,8 @@
					userId: userAgent.id
				}).then(function(data) {
					sessionStorage.setItem("roleList", JSON.stringify(data.detailModelList)); //缓存角色列表
					//					location.href = "../../../home/html/home.html"//跳转到主页面
					if(history.length>=2){
					var referrer = document.referrer;
					if(referrer){
						history.back();
					}else{						
						location.href = "../../../page/mine/html/personal-info.html"