This commit is contained in:
dute7liang
2024-01-21 21:14:08 +08:00
parent 2510dd0a95
commit 0b5b166211
5 changed files with 277 additions and 24 deletions

View File

@@ -51,3 +51,26 @@ export function delDynamic(id) {
method: 'delete'
})
}
export function dynamicTop(id) {
return request({
url: '/cai/dynamic/top',
method: 'post',
data: {id:id}
})
}
export function dynamicUnTop(id) {
return request({
url: '/cai/dynamic/unTop',
method: 'post',
data: {id:id}
})
}
export function dynamicSelectTop() {
return request({
url: '/cai/dynamic/selectTop',
method: 'get'
})
}