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);