فهرست منبع

超时自动退出

yanghao 1 ماه پیش
والد
کامیت
54852e1830
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/composable/useAutoLogout.ts

+ 1 - 1
src/composable/useAutoLogout.ts

@@ -7,7 +7,7 @@ import { throttle } from 'lodash-es'
 
 // --- 关键修改:将变量移到函数外部,变成全局共享变量 ---
 let timer: ReturnType<typeof setTimeout> | null = null
-const TIMEOUT = 30 * 1000 // 30分钟
+const TIMEOUT = 30 * 60 * 1000 // 30分钟
 const events = ['click', 'mousedown', 'keydown', 'scroll', 'mousemove']
 
 export function useAutoLogout() {