Showing
3 changed files
with
4 additions
and
4 deletions
| ... | @@ -160,7 +160,7 @@ const sendVerificationCode = async () => { | ... | @@ -160,7 +160,7 @@ const sendVerificationCode = async () => { |
| 160 | } | 160 | } |
| 161 | 161 | ||
| 162 | try { | 162 | try { |
| 163 | - // TAG: 调用发送验证码API | 163 | + // 调用发送验证码API |
| 164 | const { code } = await smsAPI({ mobile: formData.phone }) | 164 | const { code } = await smsAPI({ mobile: formData.phone }) |
| 165 | if (code === 1) { | 165 | if (code === 1) { |
| 166 | showToast('验证码已发送') | 166 | showToast('验证码已发送') |
| ... | @@ -183,7 +183,7 @@ const handleSubmit = async () => { | ... | @@ -183,7 +183,7 @@ const handleSubmit = async () => { |
| 183 | error.value = '' | 183 | error.value = '' |
| 184 | loading.value = true | 184 | loading.value = true |
| 185 | 185 | ||
| 186 | - // TAG: 调用重置密码API | 186 | + // 调用重置密码API |
| 187 | const { code } = await resetPasswordAPI({ | 187 | const { code } = await resetPasswordAPI({ |
| 188 | mobile: formData.phone, | 188 | mobile: formData.phone, |
| 189 | sms_code: formData.verificationCode, | 189 | sms_code: formData.verificationCode, | ... | ... |
| ... | @@ -243,7 +243,7 @@ const sendVerificationCode = async () => { | ... | @@ -243,7 +243,7 @@ const sendVerificationCode = async () => { |
| 243 | } | 243 | } |
| 244 | 244 | ||
| 245 | try { | 245 | try { |
| 246 | - // TAG: 调用发送验证码API | 246 | + // 调用发送验证码API |
| 247 | const { code } = await smsAPI({ mobile: formData.phone }) | 247 | const { code } = await smsAPI({ mobile: formData.phone }) |
| 248 | if (code === 1) { | 248 | if (code === 1) { |
| 249 | showToast('验证码已发送') | 249 | showToast('验证码已发送') | ... | ... |
| ... | @@ -783,7 +783,7 @@ onMounted(async () => { | ... | @@ -783,7 +783,7 @@ onMounted(async () => { |
| 783 | router.push('/courses') | 783 | router.push('/courses') |
| 784 | } | 784 | } |
| 785 | 785 | ||
| 786 | - // TAG: 录入个人信息表单的标记, 进入页面时清理所有info_entry_completed_开头的localStorage标记 | 786 | + // 录入个人信息表单的标记, 进入页面时清理所有info_entry_completed_开头的localStorage标记 |
| 787 | const keysToRemove = [] | 787 | const keysToRemove = [] |
| 788 | for (let i = 0; i < localStorage.length; i++) { | 788 | for (let i = 0; i < localStorage.length; i++) { |
| 789 | const key = localStorage.key(i) | 789 | const key = localStorage.key(i) | ... | ... |
-
Please register or login to post a comment