会员管理

This commit is contained in:
duan
2024-10-25 14:37:22 +08:00
parent 2cf3fe512b
commit baf3ebbc1b
4 changed files with 105 additions and 33 deletions

View File

@@ -213,7 +213,24 @@ export function midfiyAccount(data) {
}
})
}
// 新增会员
export function member(data) {
return request({
url: '/api/member',
method: 'post',
data: {
...data
}
})
}
// 修改会员
export function tbShopUser(data) {
return request({
url: `/api/tbShopUser`,
method: "put",
data
});
}
export function callTablecallRecord(params) {
return request({
url: '/callTable/callRecord',