From 4dd5d856071897c06c657019af10318574c7e3dc Mon Sep 17 00:00:00 2001 From: aixianling Date: Mon, 17 Jun 2024 16:45:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=8E=AA=E8=BE=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/packages/ai/AiCopilot.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/packages/ai/AiCopilot.vue b/ui/packages/ai/AiCopilot.vue index 11fb5177..2318969b 100644 --- a/ui/packages/ai/AiCopilot.vue +++ b/ui/packages/ai/AiCopilot.vue @@ -48,7 +48,7 @@ export default { } }, handleSend() { - if (!this.prompt.trim()) return this.$message.error("无法发送空白信息,请输入资讯的内容") + if (!this.prompt.trim()) return this.$message.error("无法发送空白信息") const concatenateStr = (content, i = 0) => { this.history.at(-1).content += content.slice(i, i + 1) if (++i < content.length) setTimeout(() => concatenateStr(content, i), 50)