perf: 主agent对话交互调整

This commit is contained in:
rd
2025-08-28 12:03:52 +08:00
parent ce5bd35e37
commit 10fc946eca
13 changed files with 190 additions and 136 deletions

View File

@ -19,8 +19,6 @@ export default {
});
onMounted(() => {
chatStore.getAgentInfo();
searchValue.value = chatStore.searchValue;
chatStore.clearSearchValue();
});
@ -28,7 +26,7 @@ export default {
return () => (
<div class="chat-wrap rounded-12px w-full h-full">
{conversationId.value ? (
<ConversationDetail inputInfo={{ message: searchValue.value }} />
<ConversationDetail inputInfo={{ message: searchValue.value }} conversationId={conversationId.value} />
) : (
<ConversationCreate />
)}