Browse Source

解决搜索完成后,历史记录弹出的问题;

dev
宋杰 10 hours ago
parent
commit
a456e9ceab
  1. 6
      src/views/components/HistoryRecord.vue

6
src/views/components/HistoryRecord.vue

@ -503,11 +503,13 @@ const getHistoryList = async (params) => {
emotionTirstFlag = false;
}
if (props.currentType == "AIchat") {
// chatStore
if (props.currentType == "AIchat" && chatFirstFlag) {
isCollapsed.value = !chatStore.aiChatCall;
} else {
} else if (props.currentType == "AiEmotion" && emotionTirstFlag) {
isCollapsed.value = !chatStore.aiEmotionCall;
}
//
// 1.
let topList = remainingRecords.filter((record) => record.isTop === 1);

Loading…
Cancel
Save