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 () {
}
});
}
Angelinavae
慕瓜9220888
相关分类