init
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user