优化功能
This commit is contained in:
@ -56,7 +56,9 @@ export interface IGetStoreVerificationCodeParams {
|
||||
}
|
||||
|
||||
export function getVerificationCode(data: IGetStoreVerificationCodeParams) {
|
||||
return http.Post('/storeapi/sms/sendCode', data)
|
||||
return http.Post('/storeapi/sms/sendCode', data, {
|
||||
meta: { ignoreAuth: true }
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
@ -70,7 +72,9 @@ export interface IResetPasswordParams {
|
||||
}
|
||||
|
||||
export function resetPassword(data: IResetPasswordParams) {
|
||||
return http.Post('/storeapi/storeLogin/resetPassword', data)
|
||||
return http.Post('/storeapi/storeLogin/resetPassword', data, {
|
||||
meta: { ignoreAuth: true }
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user