Преглед на файлове

【解决todo】AI 更新对话标题,chat 窗口也更新 title

cherishsince преди 1 година
родител
ревизия
3634fca835
променени са 1 файла, в които са добавени 7 реда и са изтрити 0 реда
  1. 7 0
      src/views/ai/chat/Conversation.vue

+ 7 - 0
src/views/ai/chat/Conversation.vue

@@ -260,6 +260,13 @@ const updateConversationTitle = async (conversation: ChatConversationVO) => {
   message.success('重命名成功')
   // 刷新列表
   await getChatConversationList()
+  // 过滤当前切换的
+  const filterConversationList = conversationList.value.filter(item => {
+    return item.id === conversation.id
+  })
+  if (filterConversationList.length > 0) {
+    emits('onConversationClick', filterConversationList[0])
+  }
 }
 
 /**