1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-12 13:19:31 +08:00

fix: 修复文章评论回复功能

This commit is contained in:
小莫唐尼
2024-06-27 00:21:26 +08:00
parent 4d0901b650
commit 77da85f7d4
5 changed files with 12 additions and 21 deletions
+2 -2
View File
@@ -169,7 +169,7 @@ export default {
}
this.$httpApi.v2.addPostComment(commentForm)
.then(res => {
uni.$tm.toast('评论成功!');
uni.$tm.toast('评论成功,可能需要审核');
// 更新评论者信息
this.handleSetVisitor();
this.handleClose(true)
@@ -196,7 +196,7 @@ export default {
}
this.$httpApi.v2.addPostCommentReply(this.form.postName, replyForm)
.then(res => {
uni.$tm.toast('回复成功!');
uni.$tm.toast('回复成功,可能需要审核');
// 更新评论者信息
this.handleSetVisitor();
this.handleClose(true)