diff --git a/src/App.vue b/src/App.vue
index 9086267..c9cf24b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -83,7 +83,7 @@ const clearAuthData = () => {
const RefreshToken = async () => {
if (isWeChat.value) {
- h5WeixinLogin();
+ // h5WeixinLogin();
return;
}
const token = localStorage.getItem("token");
@@ -95,7 +95,7 @@ const RefreshToken = async () => {
const accessExpireInMilliseconds = parseInt(accessExpire) * 1000; // 转换为毫秒级
if (currentTime > accessExpireInMilliseconds) {
if (isWeChat.value) {
- h5WeixinLogin();
+ // h5WeixinLogin();
}
return;
}
@@ -103,7 +103,7 @@ const RefreshToken = async () => {
// 1. 如果没有 token,直接返回
if (!token) {
if (isWeChat.value) {
- h5WeixinLogin();
+ // h5WeixinLogin();
}
return;
}
@@ -207,7 +207,7 @@ const h5WeixinGetCode = () => {