diff --git a/components/uni-im-msg/popup-control.vue b/components/uni-im-msg/popup-control.vue index ce59440713485ae69703d601f6abaff55ea8f6a7..01ecdff00b9810e7480a0e3e3609d495fc02892c 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(),