Index: ssts-web/src/main/webapp/homepage/portalPage.js =================================================================== diff -u -r22154 -r22262 --- ssts-web/src/main/webapp/homepage/portalPage.js (.../portalPage.js) (revision 22154) +++ ssts-web/src/main/webapp/homepage/portalPage.js (.../portalPage.js) (revision 22262) @@ -415,6 +415,23 @@ }); store.load(); windowOnLoaded = true; + + /** + * ajax异步请求后台,当前用户是否已经修改密码 + */ + Ext.Ajax.request({ + url : WWWROOT + '/systemmanage/user/userAction!isUnmodifiedPwdByUser.do', + success : function(response, options){ + var result = Ext.decode(response.responseText, true); + //没有修改 + if(!result.message) + showModifyPWDWindowByUnmodified(); + }, + failure : function(response, options){ + }, + method : 'POST', + params : {} + }); }); function initTipPosition(){