diff --git a/src/store/modules/locked.ts b/src/store/modules/locked.ts index 139a58c4..3b5672bd 100644 --- a/src/store/modules/locked.ts +++ b/src/store/modules/locked.ts @@ -26,7 +26,6 @@ const useLockedStore = defineStore('locked', { async relaodWait() { const res = await getSysConf(); if (res.code === RESULT_CODE_SUCCESS && res.data) { - console.log(res); this.fnLock('lock', false); } else { // 延迟5秒 @@ -44,7 +43,7 @@ const useLockedStore = defineStore('locked', { // 延迟5秒 setTimeout(() => { this.relaodWait(); - }, 5_000); + }, 2_000); } }, },