no message

This commit is contained in:
DESKTOP-RQ919RC\Pc 2025-04-03 18:51:44 +08:00
parent ec9ddc5a56
commit 8526203298

View File

@ -46,11 +46,11 @@ function $ajaxget(url, data) {
return new Promise((resolve, reject) => {
axios
.get(url, {
headers: {
"Cache-Control": "max-age=3600",
},
emulateJSON: true,
withCredentials: true,
// headers: {
// "Cache-Control": "max-age=3600",
// },
})
.then((res) => {
var data = typeof res.data == "string" ? JSON.parse(res.data) : res.data;