no message

This commit is contained in:
DESKTOP-RQ919RC\Pc 2025-04-03 18:34:59 +08:00
parent e8c413baf1
commit 883e585e21

View File

@ -48,6 +48,10 @@ function $ajaxget(url, data) {
.get(url, {
emulateJSON: true,
withCredentials: true,
headers: {
'cache-control': 'no-cache',
'Pragma': 'no-cache'
}
})
.then((res) => {
var data = typeof res.data == "string" ? JSON.parse(res.data) : res.data;