Ext.Ajax.request({ url: '/Login/CheckLogin', params: { LogonName: LogonName, PassWord: PassWord, VerificationCode: VerificationCode }, success: function (response) { Ext.Msg.hide(); var model = Ext.JSON.decode(response.responseText) if (model.IsSuccessful) { Ext.Tools.Msg('登录成功', 0, '系统提示'); window.location.href = "/Home/Index"; } else { var eorrMsg = document.getElementById("pwdEorr"); eorrMsg.style.display="block"; //Ext.Tools.Msg(model.Message, 1, '系统提示'); ResetVerificationCodeImg(); } }, failure: function () { } }); }
添加回答
举报
0/150
提交
取消