mirror of https://gitee.com/y_project/RuoYi.git
全局ajax提示
parent
c1be1659ea
commit
6244e6bf18
|
@ -138,13 +138,15 @@ function createMenuItem(dataUrl, menuName) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 设置全局ajax超时处理 */
|
/** 设置全局ajax处理 */
|
||||||
$.ajaxSetup({
|
$.ajaxSetup({
|
||||||
complete: function(XMLHttpRequest, textStatus) {
|
complete: function(XMLHttpRequest, textStatus) {
|
||||||
if (textStatus == "parsererror") {
|
if (textStatus == 'timeout') {
|
||||||
$.modal.confirm("登陆超时!请重新登陆!", function() {
|
$.modal.alertWarning("服务器超时,请稍后再试!");
|
||||||
window.location.href = ctx + "login";
|
$.modal.closeLoading();
|
||||||
})
|
} else if (textStatus == "parsererror") {
|
||||||
|
$.modal.alertWarning("服务器错误,请联系管理员!");
|
||||||
|
$.modal.closeLoading();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue