From a96a2ec9ec391517035f331d634150a3d3a0fd05 Mon Sep 17 00:00:00 2001 From: cherishsince Date: Tue, 21 May 2024 22:21:45 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BC=98=E5=8C=96=E3=80=91AI=20chat?= =?UTF-8?q?=20=E9=BB=98=E8=AE=A4=E9=80=89=E4=B8=AD=E5=AF=B9=E8=AF=9D?= =?UTF-8?q?=EF=BC=8C=E5=88=B7=E6=96=B0=E5=A2=9E=E5=8A=A0=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E4=B8=AD=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ai/chat/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/ai/chat/index.vue b/src/views/ai/chat/index.vue index 0f091ec1..23e5c237 100644 --- a/src/views/ai/chat/index.vue +++ b/src/views/ai/chat/index.vue @@ -481,9 +481,11 @@ onMounted(async () => { // 设置当前对话 TODO 角色仓库过来的,自带 conversationId 需要选中 if (route.query.conversationId) { const id = route.query.conversationId as string + activeConversationId.value = id await getConversation(id) } // 获取列表数据 + listLoading.value = true await getMessageList() })