From 2a29fe9749cf28f66fc71d708332affcb13fcb18 Mon Sep 17 00:00:00 2001 From: DCloud_JSON Date: Fri, 10 May 2024 21:08:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=BD=93=E9=AA=8C=EF=BC=8C=E6=8A=8A=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E6=8C=89=E9=92=AE=E5=92=8C=E5=9B=9E=E5=A4=8D=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=8D=A2=E4=B8=AA=E4=BD=8D=E7=BD=AE=EF=BC=8C=E9=81=BF?= =?UTF-8?q?=E5=85=8D=E7=82=B9=E5=9B=9E=E5=A4=8D=E8=AF=AF=E7=82=B9=E6=88=90?= =?UTF-8?q?=E6=92=A4=E5=9B=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/uni-im-msg/popup-control.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/uni-im-msg/popup-control.vue b/components/uni-im-msg/popup-control.vue index ce59440..01ecdff 100644 --- a/components/uni-im-msg/popup-control.vue +++ b/components/uni-im-msg/popup-control.vue @@ -74,16 +74,16 @@ }, initControlList(msg){ this.controlList = [ - { - title:'复制', - action:()=>this.copyContent(), - canDisplay: ["userinfo-card","rich-text","text","image"].includes(msg.type) && (msg.type != 'image' || uniIm.systemInfo.uniPlatform === "web"), - }, { title:'回复', action:()=>this.answer(), canDisplay:msg._id != undefined,// 只有发送成功的消息才能回复 }, + { + title:'复制', + action:()=>this.copyContent(), + canDisplay: ["userinfo-card","rich-text","text","image"].includes(msg.type) && (msg.type != 'image' || uniIm.systemInfo.uniPlatform === "web"), + }, { title:'撤回', action:()=>this.revokeMsg(), -- GitLab