From 8f2d3b6aeb0b61121b566f0f38f7f4bef25e78b9 Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Thu, 3 Jul 2025 21:53:52 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A3980=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E4=BA=92=E5=8A=A8=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E5=88=97=E8=A1=A8=E5=8F=AA=E6=98=BE=E7=A4=BA=E6=9C=80?= =?UTF-8?q?=E6=96=B0=E7=9A=84=E5=8D=81=E6=9D=A1=E8=AE=B0=E5=BD=95=EF=BC=8C?= =?UTF-8?q?=E6=9C=AA=E5=85=A8=E9=83=A8=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_common/views/message.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkg_common/views/message.vue b/pkg_common/views/message.vue index a201a49..e3e1560 100644 --- a/pkg_common/views/message.vue +++ b/pkg_common/views/message.vue @@ -162,7 +162,7 @@ export default { showSendBtn(item) { this.showBtn = true // 显示发送按钮 this.currentComment = item - this.content = ' ' // 清空输入框 + this.content = ' `' // 清空输入框 }, /** * 回复消息 @@ -177,12 +177,11 @@ export default { contentId: this.currentComment.contentId, // 评论的目标内容ID,必传 contentType: 'hotelNews', // 评论的目标内容类型,必传(店铺资讯传入值hotelNews) reply: this.content, // 评论内容,必传 - parentReplyId: this.currentComment.parentReplyId, atUid: this.currentComment.senderUid // @的用户ID } replyMessage(params).then(res => { this.fetchList() // 查询消息列表 - uni.hideLoading() + uni.hideLoading }) }, @@ -194,7 +193,7 @@ export default { page: 1, // 页码 limit: 999999 } - getMessageList().then(res => { + getMessageList(params).then(res => { this.list = res.data.records }) }