用户编辑和余额增加减

This commit is contained in:
duan
2024-08-20 16:57:26 +08:00
parent c51d5cd064
commit 1fde054290
8 changed files with 273 additions and 56 deletions

View File

@@ -607,3 +607,28 @@ export function shopStaffDelete(data) {
data
});
}
//增减余额
export function midfiyAccount(data) {
return request({
url: `/api/tbShopUser/midfiyAccount`,
method: "post",
data
});
}
// 编辑用户
export function tbShopUseredit(data) {
return request({
url: `/api/tbShopUser`,
method: "put",
data
});
}
// 通过活动id获取赠送商品列表
export function activate(id) {
return request({
url: `shop/storage/activate/${id}`,
method: "get"
});
}