chore: setting页面拆分

This commit is contained in:
2026-05-11 11:28:59 +08:00
parent f76c9ed828
commit 93813f7b56
10 changed files with 1169 additions and 849 deletions

View File

@@ -66,7 +66,7 @@ const RESEND_COUNTDOWN_SECONDS = 60
const verificationCode = ref('')
const resendCountdown = ref(RESEND_COUNTDOWN_SECONDS)
const verificationCodeRef = ref<{ resetCode: (size?: number) => void } | null>(null)
let resendCountdownTimer: ReturnType<typeof window.setInterval> | null = null
let resendCountdownTimer: number | null = null
const formattedResendCountdown = computed(
() => `00:${String(resendCountdown.value).padStart(2, '0')}`