3.11提交

This commit is contained in:
zoujiandong
2026-03-11 13:13:10 +08:00
parent 40f5ddf4a5
commit 08e3ba22c5
22 changed files with 2845 additions and 185 deletions
+2 -4
View File
@@ -152,16 +152,14 @@
popupRef.value && popupRef.value.close()
inputContent.value = ''
}
const onConfirm = () => {
const text = inputContent.value.trim()
if (!text) {
uni.showToast({ title: '请输入内容', icon: 'none' })
return
}
replies.value = [text, ...replies.value]
uni.setClipboardData({ data: text, showToast: false })
uni.showToast({ title: '已添加并复制', icon: 'none' })
addQuickReply();
onCancel()
}