From e19409187351b062304bd5caac5c1c0c680f50a0 Mon Sep 17 00:00:00 2001 From: yangzhe Date: Thu, 31 Jul 2025 11:32:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=E7=95=99=E8=A8=80=E6=9D=BF?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=B8=AD=E6=B7=BB=E5=8A=A0=E6=A8=A1=E6=80=81?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E5=8A=9F=E8=83=BD=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=BB=91=E5=8A=A8=E6=93=8D=E4=BD=9C=E5=92=8C=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/AnswerList/messageBoard.vue | 151 +++++++++++++++++++++++-- pages/home/messageBoard/index.vue | 19 +++- 2 files changed, 157 insertions(+), 13 deletions(-) diff --git a/components/AnswerList/messageBoard.vue b/components/AnswerList/messageBoard.vue index 3869214..e286c37 100644 --- a/components/AnswerList/messageBoard.vue +++ b/components/AnswerList/messageBoard.vue @@ -2,16 +2,19 @@ - + - @@ -91,6 +97,17 @@ export default { // 根据索引设置activeTab值 this.activeTab = index === 0 ? "unread" : "replied"; }, + handleDelete(item, callback) { + console.log("handleDelete", item); + + setTimeout(() => { + this.$refs.uToast.show({ + title: "撤回成功", + type: "success", + }); + callback(true); + }, 1500); + }, }, };