Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Sep 20, 2024
1 parent 974e8ee commit 8808a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/auth/RegisterView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async function sendCode() {
message.error('请求邮件验证代码失败: ' + e)
}
if (!rs) return
if (rs.status) {
if (rs.status === 200) {
message.success('已发送,若未收到请检查收件箱')
verify.value.msg = ref(`已发送`)
} else {
Expand Down

0 comments on commit 8808a43

Please sign in to comment.