管理后台前端搭建

This commit is contained in:
huangdeliang
2021-05-31 19:34:04 +08:00
parent 7e3311ad64
commit 0e08a1fef8
9 changed files with 439 additions and 70 deletions

View File

@ -20,7 +20,7 @@ export function postTopicReply(data) {
return request({
url: "/services/topic/reply",
method: "post",
body: data
data
});
}
@ -28,6 +28,6 @@ export function postTopicComment(data) {
return request({
url: "/services/topic/comment",
method: "post",
body: data
data
});
}