louhangfei 2 vuotta sitten
vanhempi
commit
6dd3de4ebe
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/store/modules/lockscreen.ts

+ 1 - 1
src/store/modules/lockscreen.ts

@@ -15,7 +15,7 @@ export type ILockscreenState = {
 export const useLockscreenStore = defineStore({
   id: 'app-lockscreen',
   state: (): ILockscreenState => ({
-    isLock: isLock === true, // 是否锁屏
+    isLock: false, // 是否锁屏
     lockTime: isLock == 'true' ? initTime : 0,
   }),
   getters: {},