From b445464192cb9879803c080c4e5d1450a7db1e47 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 17 Jan 2024 20:32:38 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=BD=AF=E4=BB=B6=E6=BF=80=E6=B4=BBom?= =?UTF-8?q?clong?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/locked.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); } }, },