From ea9535be7b314618a226665b2025e78f76074e0d Mon Sep 17 00:00:00 2001 From: wangdongbo <> Date: Fri, 7 Aug 2026 09:35:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=92=A8=E8=AF=A2=E5=8A=A9=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 30 +++++-- pages/ai-consult/chat.vue | 158 +++++++++++++++++++++++++++++++++++++ pages/ai-consult/entry.vue | 12 +++ pages/ai-consult/list.vue | 40 ++++++++++ pages/home/consult.vue | 37 +++++++-- utils/api.js | 7 ++ 6 files changed, 270 insertions(+), 14 deletions(-) create mode 100644 pages/ai-consult/chat.vue create mode 100644 pages/ai-consult/entry.vue create mode 100644 pages/ai-consult/list.vue diff --git a/pages.json b/pages.json index b2d702d..e47d85e 100644 --- a/pages.json +++ b/pages.json @@ -136,8 +136,8 @@ } ] }, - { - "root": "pages/rate", + { + "root": "pages/rate", "name": "rate", "pages": [ { @@ -154,10 +154,28 @@ "disableScroll": true } } - ] - }, - { - "root": "pages/archive", + ] + }, + { + "root": "pages/ai-consult", + "name": "ai-consult", + "pages": [ + { + "path": "list", + "style": { "navigationBarTitleText": "AI咨询记录", "disableScroll": true } + }, + { + "path": "chat", + "style": { "navigationBarTitleText": "AI咨询助理", "disableScroll": true } + }, + { + "path": "entry", + "style": { "navigationBarTitleText": "AI咨询助理", "disableScroll": true } + } + ] + }, + { + "root": "pages/archive", "name": "archive", "pages": [ { diff --git a/pages/ai-consult/chat.vue b/pages/ai-consult/chat.vue new file mode 100644 index 0000000..ba7793f --- /dev/null +++ b/pages/ai-consult/chat.vue @@ -0,0 +1,158 @@ +