Add personal tool management page

This commit is contained in:
2024-01-30 13:33:57 +08:00
parent ad47030cb2
commit 0e804ff732
12 changed files with 457 additions and 61 deletions

View File

@@ -103,7 +103,7 @@ const SignUp = () => {
return
}
setIsSending(true)
void message.loading({ content: '发送中', key: 'sending', duration: 0 })
void message.loading({ content: '发送中', key: 'SENDING', duration: 0 })
void r_auth_resend()
.then((res) => {
const response = res.data
@@ -114,7 +114,7 @@ const SignUp = () => {
}
})
.finally(() => {
message.destroy('sending')
message.destroy('SENDING')
setIsSending(false)
})
}