diff --git a/src/stores/user.ts b/src/stores/user.ts index 8446567..1d0d2bd 100644 --- a/src/stores/user.ts +++ b/src/stores/user.ts @@ -48,11 +48,11 @@ export const useUserStore = defineStore("user", { this.refresh(); } else { // 显示还有多长时间过期 - console.log( - "Token will expire in " + - (this.expired_at - Date.now()) / 1000 + - " seconds" - ); + // console.log( + // "Token will expire in " + + // (this.expired_at - Date.now()) / 1000 + + // " seconds" + // ); } } }, 10 * 1000);