mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改后台ajax错误提示
This commit is contained in:
parent
f7766e68a7
commit
1396c2c0b5
@ -193,10 +193,12 @@ $(function () {
|
|||||||
if (typeof headers === 'object') for (var i in headers) xhr.setRequestHeader(i, headers[i]);
|
if (typeof headers === 'object') for (var i in headers) xhr.setRequestHeader(i, headers[i]);
|
||||||
}, error: function (XMLHttpRequest) {
|
}, error: function (XMLHttpRequest) {
|
||||||
layer.open({
|
layer.open({
|
||||||
type: 2, area: ["800px", "500px"], content: 'javascript:void(0)',
|
title: XMLHttpRequest.status + ' - ' + XMLHttpRequest.statusText + "(返回状态异常详情)",
|
||||||
title: XMLHttpRequest.status + ' - ' + XMLHttpRequest.statusText,
|
type: 2, area: ["800px", "500px"], content: ['javascript:void(0)'],
|
||||||
success: function ($element) {
|
success: function ($element, index) {
|
||||||
$element.find('iframe')[0].contentWindow.document.write(XMLHttpRequest.responseText)
|
layer.full(index);
|
||||||
|
$element.find('iframe')[0].contentWindow.document.write(XMLHttpRequest.responseText);
|
||||||
|
$element.find('.layui-layer-title').addClass('font-s16 font-w7 text-center color-red')
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (parseInt(XMLHttpRequest.status) === 200) {
|
if (parseInt(XMLHttpRequest.status) === 200) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user