From c191623d87aa68520685da942b5a0e28f80a3dc9 Mon Sep 17 00:00:00 2001 From: zch Date: Tue, 26 May 2026 15:33:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9EAI=E6=99=BA=E8=83=BD?= =?UTF-8?q?=E5=8A=A9=E6=89=8B=E8=81=8A=E5=A4=A9=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/aiChat.js | 10 + src/components/chat/ai.vue | 526 +++++++++++++++++++++++++++++++++++++ 2 files changed, 536 insertions(+) create mode 100644 src/api/aiChat.js create mode 100644 src/components/chat/ai.vue diff --git a/src/api/aiChat.js b/src/api/aiChat.js new file mode 100644 index 0000000..2803e15 --- /dev/null +++ b/src/api/aiChat.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +// 官网 AI 智能咨询 +export function aiChat(data) { + return request({ + url: '/portal/ai/chat', + method: 'post', + data + }) +} diff --git a/src/components/chat/ai.vue b/src/components/chat/ai.vue new file mode 100644 index 0000000..39b2ea7 --- /dev/null +++ b/src/components/chat/ai.vue @@ -0,0 +1,526 @@ + + +