优化功能

This commit is contained in:
wangxiaowei
2026-01-25 00:00:14 +08:00
parent cab8d5a1ab
commit fdc80c876f
12 changed files with 160 additions and 128 deletions

View File

@ -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 }
})
}
/**