From 190251652f99af0565300ad46aeb2e161cc9754b Mon Sep 17 00:00:00 2001 From: "[yxf]" <[1524240689@qq.com]> Date: Fri, 3 Apr 2026 18:54:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=9C=8D=E8=BD=AC=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-uniapp/pages/chat/chat-box.vue | 1 + im-uniapp/store/chatStore.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/im-uniapp/pages/chat/chat-box.vue b/im-uniapp/pages/chat/chat-box.vue index 12b8807..54de557 100644 --- a/im-uniapp/pages/chat/chat-box.vue +++ b/im-uniapp/pages/chat/chat-box.vue @@ -586,6 +586,7 @@ export default { this.chatStore.updateMessage(tmpMessage, chat); }) }, + onDeleteMessage(msgInfo) { uni.showModal({ title: '删除消息', diff --git a/im-uniapp/store/chatStore.js b/im-uniapp/store/chatStore.js index 408213a..1e636e7 100644 --- a/im-uniapp/store/chatStore.js +++ b/im-uniapp/store/chatStore.js @@ -434,4 +434,4 @@ export default defineStore('chatStore', { return null; } } -}); \ No newline at end of file +});