This commit is contained in:
2026-02-23 16:28:39 +08:00
parent 94c0476207
commit 49fb91d95a
7 changed files with 22 additions and 27 deletions

View File

@@ -11,6 +11,7 @@ export const SendVerificationCode = (params) => {
return request({
url: '/api/user/send-verification-code',
method: 'post',
loading: true,
params
})
}
@@ -28,6 +29,7 @@ export const Register = (data) => {
return request({
url: '/api/user/register',
method: 'post',
loading: true,
data
})
}
@@ -43,6 +45,7 @@ export const Login = (data) => {
return request({
url: '/api/user/login',
method: 'post',
loading: true,
data
})
}