Index: ssts-web/src/main/webapp/js/common.js =================================================================== diff -u -r40911 -r40916 --- ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 40911) +++ ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 40916) @@ -2354,14 +2354,14 @@ } //ZSYY-438:验证码校验接口 -function validateAuthenticationCode(loginName, verificationCode, callback) { +function validateAuthenticationCode(loginName, verificationCode, scene, callback) { if (verificationCode == '') { showResult('验证码不能为空!'); return } Ext.Ajax.request({ url: WWWROOT + '/disinfectSystem/verification/verificationCodeAction!validateAuthenticationCode.do', - params: { loginName: loginName, verificationCode: verificationCode }, + params: { loginName: loginName, verificationCode: verificationCode, scene: scene }, success: function (response, options) { var result = Ext.decode(response.responseText); callback(result); Index: ssts-web/src/main/webapp/logon.jsp =================================================================== diff -u -r40915 -r40916 --- ssts-web/src/main/webapp/logon.jsp (.../logon.jsp) (revision 40915) +++ ssts-web/src/main/webapp/logon.jsp (.../logon.jsp) (revision 40916) @@ -885,7 +885,7 @@ var userCode = document.getElementById("userCode").value; var encryptedUserName = encrypt.encrypt(userName); var encryptedUserCode = encrypt.encrypt(userCode); - validateAuthenticationCode(encryptedUserName, encryptedUserCode, function(res){ + validateAuthenticationCode(encryptedUserName, encryptedUserCode, 'login', function(res){ if(res.success){ ab1.close(); //GZSZYY-83:登录二次验证类型