关注粉丝列表

This commit is contained in:
wangxulei
2024-12-27 17:22:59 +08:00
parent 599696d68c
commit 305bc4eb86
19 changed files with 1055 additions and 6 deletions

View File

@@ -0,0 +1,41 @@
import request from '@/utils/request'
export function getReplyPage(params) {
return request({
url: '/admin/reply/page',
method: 'get',
params
})
}
export function getReplyList(params) {
return request({
url: '/admin/reply/list',
method: 'get',
params
})
}
export function addReply(data) {
return request({
url: '/admin/reply/add',
method: 'post',
data: data
})
}
export function editReply(data) {
return request({
url: '/admin/reply/update',
method: 'post',
data: data
})
}
export function deleteReply(replyId) {
return request({
url: '/admin/reply/delete/' + replyId,
method: 'get'
})
}