diff --git a/components/WithAuth/index.js b/components/WithAuth/index.js index a6ac499..89b2909 100644 --- a/components/WithAuth/index.js +++ b/components/WithAuth/index.js @@ -26,7 +26,9 @@ export default function WithAuth(WrappedComponent) { return; } if (hasToken) { + console.log("hasToken-----------", hasToken); const currentIsLogin = await checkAuth(); + console.log("currentIsLogin-----------", currentIsLogin); if (!currentIsLogin) { Toast.show({ icon: "fail", diff --git a/utils/requireAPI.js b/utils/requireAPI.js index 1aefa00..ece811b 100644 --- a/utils/requireAPI.js +++ b/utils/requireAPI.js @@ -27,7 +27,7 @@ export default function customFetch(method, url, options = {}, needMid) { // 合并选项 const mergedOptions = { ...defaultOptions, body }; - // console.log("body", body); + console.log("body", body); // 返回 Promise 对象 return new Promise((resolve, reject) => { fetch(url, mergedOptions)