Commit 24ead9f0 by cherishsince

【优化】AI 对话,处理id 为空,对话不存在情况

parent 15e7a260
...@@ -191,8 +191,11 @@ const textRoll = async () => { ...@@ -191,8 +191,11 @@ const textRoll = async () => {
// ============ 处理对话滚动 ============== // ============ 处理对话滚动 ==============
function scrollToBottom(isIgnore?: boolean) { function scrollToBottom(isIgnore?: boolean) {
// isIgnore = isIgnore !== null ? isIgnore : false
nextTick(() => { nextTick(() => {
messageRef.value.scrollToBottom(isIgnore) if (messageRef.value) {
messageRef.value.scrollToBottom(isIgnore)
}
}) })
} }
...@@ -441,8 +444,10 @@ const getConversation = async (id: string | null) => { ...@@ -441,8 +444,10 @@ const getConversation = async (id: string | null) => {
return return
} }
const conversation: ChatConversationVO = await ChatConversationApi.getChatConversationMy(id) const conversation: ChatConversationVO = await ChatConversationApi.getChatConversationMy(id)
activeConversation.value = conversation if (conversation) {
activeConversationId.value = conversation.id activeConversation.value = conversation
activeConversationId.value = conversation.id
}
} }
// ============ message =========== // ============ message ===========
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment