diff --git a/src/views/ai/chat/index/components/conversation/ConversationList.vue b/src/views/ai/chat/index/components/conversation/ConversationList.vue index 73a4d2a27..305ae3787 100644 --- a/src/views/ai/chat/index/components/conversation/ConversationList.vue +++ b/src/views/ai/chat/index/components/conversation/ConversationList.vue @@ -31,7 +31,9 @@ class="conversation-item classify-title" v-if="conversationMap[conversationKey].length" > - {{ conversationKey }} + + {{ conversationKey }} +
{ // 排序、指定、时间分组(今天、一天前、三天前、七天前、30天前) // noinspection NonAsciiCharacters const groupMap = { - 置顶: [], - 今天: [], - 一天前: [], - 三天前: [], - 七天前: [], - 三十天前: [] + 置顶: [] as ChatConversationVO[], + 今天: [] as ChatConversationVO[], + 一天前: [] as ChatConversationVO[], + 三天前: [] as ChatConversationVO[], + 七天前: [] as ChatConversationVO[], + 三十天前: [] as ChatConversationVO[] } // 当前时间的时间戳 const now = Date.now() diff --git a/src/views/ai/chat/index/components/role/RoleList.vue b/src/views/ai/chat/index/components/role/RoleList.vue index 2c270bfda..0dd14a0f0 100644 --- a/src/views/ai/chat/index/components/role/RoleList.vue +++ b/src/views/ai/chat/index/components/role/RoleList.vue @@ -1,9 +1,16 @@