This commit is contained in:
dute7liang
2024-01-03 23:04:03 +08:00
parent 2bdc3a7fbe
commit 0223ca5ec7
11 changed files with 390 additions and 104 deletions

View File

@@ -17,6 +17,14 @@ export function getAnchor(id) {
})
}
export function getFullAnchor(id) {
return request({
url: '/cai/anchor/full',
method: 'get',
params: {userId:id}
})
}
// 新增女神列表
export function addAnchor(data) {
return request({

View File

@@ -17,24 +17,23 @@ export function getAnchorApply(id) {
})
}
// 新增播主申请管理
export function addAnchorApply(data) {
export function auditAnchorSuccess(data) {
return request({
url: '/cai/anchorApply',
url: '/cai/anchorApply/auditAnchorSuccess',
method: 'post',
data: data
})
}
// 修改播主申请管理
export function updateAnchorApply(data) {
export function auditAnchorFail(data) {
return request({
url: '/cai/anchorApply',
method: 'put',
url: '/cai/anchorApply/auditAnchorFail',
method: 'post',
data: data
})
}
// 删除播主申请管理
export function delAnchorApply(id) {
return request({