From 45225737e35d5cee8a9c826467ccf6fea833d11e Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 14 十二月 2021 16:19:09 +0800 Subject: [PATCH] fixed TODO#132382 登入-輸入驗整碼倒數時間調整為5分鐘 --- PAMapp/pages/login/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PAMapp/pages/login/index.vue b/PAMapp/pages/login/index.vue index 863d242..8b543f6 100644 --- a/PAMapp/pages/login/index.vue +++ b/PAMapp/pages/login/index.vue @@ -356,14 +356,14 @@ phoneNumber = ''; otpCode = ''; onPhoneVerifyStep: 'APPLY_OTP' | 'INPUT_OTP' | 'SUBMIT_OTP' = 'APPLY_OTP'; - otpCounterSec = 900; + otpCounterSec = 300; otpResendCounter = 30; otpInterval: any; phoneOtpInfo!: OtpInfo; email = ''; onEmailVerifyResendStatus: 'APPLY_OTP' | 'CAN_RESEND' = 'APPLY_OTP'; - emailCounterSec = 900; + emailCounterSec = 300; emailResendCounter = 30; emailOtpCode = ''; emailResendInterval: any; @@ -610,11 +610,11 @@ if (type === 'MOBILE') { clearInterval(this.otpInterval); this.otpResendCounter = 30; - this.otpCounterSec = 900; + this.otpCounterSec = 300; } else { clearInterval(this.emailResendInterval); this.emailResendCounter = 30; - this.emailCounterSec = 900; + this.emailCounterSec = 300; } } -- Gitblit v1.8.0