完善茶艺师接口对接

This commit is contained in:
wangxiaowei
2026-01-25 00:00:44 +08:00
parent 6289a502f5
commit 103a591421
14 changed files with 116 additions and 31 deletions

View File

@ -68,7 +68,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 }
})
}
/**
@ -82,7 +84,9 @@ export interface IResetPasswordParams {
}
export function resetPassword(data: IResetPasswordParams) {
return http.Post('/storeapi/storeLogin/resetPassword', data)
return http.Post('/teamapi/teamLogin/resetPassword', data, {
meta: { ignoreAuth: true }
})
}
/**