调试接口

This commit is contained in:
wangxiaowei
2025-12-20 22:44:32 +08:00
parent fcd1e10129
commit dcf36df5aa
12 changed files with 219 additions and 130 deletions

View File

@ -71,4 +71,11 @@ export interface IResetPasswordParams {
export function resetPassword(data: IResetPasswordParams) {
return http.Post('/storeapi/storeLogin/resetPassword', data)
}
/**
* 查询用户余额
*/
export function getUserBalance(store_id: number) {
return http.Post<any>('/storeapi/user/checkMoney', {store_id})
}