Finish sign page

This commit is contained in:
2023-12-26 17:45:03 +08:00
parent 6510567fdf
commit 647b203b6a
6 changed files with 187 additions and 44 deletions

View File

@@ -1,8 +1,10 @@
import {
URL_FORGET,
URL_LOGIN,
URL_LOGOUT,
URL_REGISTER,
URL_RESEND,
URL_RETRIEVE,
URL_VERIFY
} from '@/constants/urls.constants'
import request from '@/services'
@@ -13,6 +15,10 @@ export const r_auth_resend = () => request.post(URL_RESEND)
export const r_auth_verify = (param: VerifyParam) => request.post(URL_VERIFY, param)
export const r_auth_forget = (param: ForgetParam) => request.post(URL_FORGET, param)
export const r_auth_retrieve = (param: RetrieveParam) => request.post(URL_RETRIEVE, param)
export const r_auth_login = (param: LoginParam) => request.post<TokenVo>(URL_LOGIN, param)
export const r_auth_logout = () => request.post(URL_LOGOUT)