Commit 5c15b7f5 by cherishsince

【解决todo】处理 AI 对话排序

parent f164225b
...@@ -151,7 +151,7 @@ const getChatConversationList = async () => { ...@@ -151,7 +151,7 @@ const getChatConversationList = async () => {
const res = await ChatConversationApi.getChatConversationMyList() const res = await ChatConversationApi.getChatConversationMyList()
// 2、排序 // 2、排序
res.sort((a, b) => { res.sort((a, b) => {
return b.updateTime - a.updateTime return b.createTime - a.createTime
}) })
conversationList.value = res conversationList.value = res
// 3、默认选中 // 3、默认选中
......
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