mirror of
				https://github.com/continew-org/continew-admin.git
				synced 2025-10-31 10:57:13 +08:00 
			
		
		
		
	fix: 修复获取验证码倒计时显示
This commit is contained in:
		| @@ -101,7 +101,7 @@ | ||||
|           captchaBtnNameKey.value = `${t('login.captcha.get')}(${ | ||||
|             captchaTime.value | ||||
|           }s)`; | ||||
|           if (captchaTime.value < 0) { | ||||
|           if (captchaTime.value <= 0) { | ||||
|             window.clearInterval(captchaTimer.value); | ||||
|             captchaTime.value = 60; | ||||
|             captchaBtnNameKey.value = t('login.captcha.get'); | ||||
|   | ||||
| @@ -203,7 +203,7 @@ | ||||
|               captchaBtnNameKey.value = `${t( | ||||
|                 'userCenter.securitySettings.updateEmail.form.reSendCaptcha' | ||||
|               )}(${captchaTime.value}s)`; | ||||
|               if (captchaTime.value < 0) { | ||||
|               if (captchaTime.value <= 0) { | ||||
|                 window.clearInterval(captchaTimer.value); | ||||
|                 captchaTime.value = 60; | ||||
|                 captchaBtnNameKey.value = t( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user