diff --git a/src/views/ai/chat/Conversation.vue b/src/views/ai/chat/Conversation.vue index 15f7a11d..60158cef 100644 --- a/src/views/ai/chat/Conversation.vue +++ b/src/views/ai/chat/Conversation.vue @@ -189,10 +189,10 @@ const createConversation = async () => { const conversationId = await ChatConversationApi.createChatConversationMy( {} as unknown as ChatConversationVO ) - // 2、选中对话 - await handleConversationClick(conversationId) - // 3、获取对话内容 + // 2、获取对话内容 await getChatConversationList() + // 3、选中对话 + await handleConversationClick(conversationId) } /**