diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-04-29 12:11:08 +0800 |
---|---|---|
committer | shentao999 <shentao@chinamobile.com> | 2019-04-29 12:15:55 +0800 |
commit | c0a6b04ff93ff4e45a443a932feeaadf7ca24c7f (patch) | |
tree | 53dd053da9069bcce53f2afe6b39037c66fdd830 /ecomp-portal-BE-os/src/main/webapp/WEB-INF | |
parent | b04f71de6f585687eb81333ab1fd909df0d8b71f (diff) |
Fix no reaction bug about changing language option
Change-Id: Ie1f75224d0cc70a87e77f5c357ed6e34b0cb3220
Issue-ID: PORTAL-565
Signed-off-by: shentao999 <shentao@chinamobile.com>
Diffstat (limited to 'ecomp-portal-BE-os/src/main/webapp/WEB-INF')
-rw-r--r-- | ecomp-portal-BE-os/src/main/webapp/WEB-INF/jsp/login.jsp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/jsp/login.jsp b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/jsp/login.jsp index 8d80d334..99c5af4f 100644 --- a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/jsp/login.jsp +++ b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/jsp/login.jsp @@ -174,7 +174,8 @@ app.controller("externalLoginController", function ($scope) { success:function (response){ if(response.success=="success"){ //window.location.href = 'applicationsHome'; - window.location.href= "<%=frontUrl%>" + window.location.href= "<%=frontUrl%>", + sessionStorage.setItem('userId',$scope.loginId) }else{ $("#errorInfo span").text(response); //$("#errorInfo").text = response; |