会员详情,修改会员积分

This commit is contained in:
owen
2023-09-30 15:50:12 +08:00
parent 940a102546
commit 4b7e57e67d
4 changed files with 213 additions and 36 deletions

View File

@ -41,3 +41,13 @@ export const updateUser = async (data: UserVO) => {
export const updateUserLevel = async (data: any) => {
return await request.put({ url: `/member/user/update-level`, data })
}
// 修改会员用户积分
export const updateUserPoint = async (data: any) => {
return await request.put({ url: `/member/user/update-point`, data })
}
// 修改会员用户余额
export const updateUserBalance = async (data: any) => {
return await request.put({ url: `/member/user/update-balance`, data })
}