feat: 评论删除功能

This commit is contained in:
xiongxiaoyang
2022-05-20 10:43:44 +08:00
parent ce5497f24f
commit f66732f21b
2 changed files with 14 additions and 4 deletions

View File

@@ -14,4 +14,8 @@ export function submitFeedBack(params) {
export function comment(params) {
return request.post('/user/comment',params);
}
export function deleteComment(id) {
return request.delete(`/user/comment/${id}`);
}