From 64f62385859e44aa72961011500728d9ee4d5cb0 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Sat, 23 Aug 2025 19:19:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E6=96=B0=E5=8F=91=E9=80=81?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-web/src/components/chat/ChatBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/im-web/src/components/chat/ChatBox.vue b/im-web/src/components/chat/ChatBox.vue index f6b9949..98a9182 100644 --- a/im-web/src/components/chat/ChatBox.vue +++ b/im-web/src/components/chat/ChatBox.vue @@ -512,7 +512,7 @@ export default { // 删除旧消息 this.chatStore.deleteMessage(msgInfo, chat); // 重新推送 - msgInfo.temId = this.generateId(); + msgInfo.tmpId = this.generateId(); let tmpMessage = this.buildTmpMessage(msgInfo); this.chatStore.insertMessage(tmpMessage, chat); this.moveChatToTop();