no message

This commit is contained in:
kuaifan 2024-03-14 13:45:01 +09:00
parent c3d5328154
commit d1ab2d98eb
2 changed files with 7 additions and 2 deletions

View File

@ -1739,8 +1739,7 @@ const localforage = require("localforage");
}
// JSONP
if (options.dataType === 'json' && options.url.indexOf('callback=') >= 0) {
let callbackName = 'f7jsonp_' + Date.now() + ($._jsonpRequests++);
let callbackName = '__jsonp_' + Date.now() + ($._jsonpRequests++);
let abortTimeout;
let callbackSplit = options.url.split('callback=');
let requestUrl = callbackSplit[0] + 'callback=' + callbackName;

View File

@ -15,6 +15,9 @@ body.dark-mode-reverse {
background-color: #d5d5d5;
border-color: #999999;
}
&:focus {
box-shadow: none;
}
}
.ivu-btn-error {
@ -24,6 +27,9 @@ body.dark-mode-reverse {
background-color: #ffbdab;
border-color: #ffbdab;
}
&:focus {
box-shadow: none;
}
}
.ivu-modal-mask {