diff --git a/js/common.js b/js/common.js index 5f8dd99..07bc8f3 100644 --- a/js/common.js +++ b/js/common.js @@ -52,8 +52,6 @@ function $ajaxget(url, data) { } ) .then(function (res) { - console.log("res", res) - var data = typeof res.data == "string" ? JSON.parse(res.data) : res.data if (data.code == 401) { @@ -66,7 +64,7 @@ function $ajaxget(url, data) { }) .catch(error => { if (error.response?.status == 401) openShowWindow() - resolve(error) + reject(error) }) }) }