Browse Source

深度九大模型历史记录有数据时默认展开

milestone-20250924-接入大财神工作流
no99 21 hours ago
parent
commit
63114bf019
  1. 8
      src/views/components/HistoryRecord.vue

8
src/views/components/HistoryRecord.vue

@ -478,6 +478,7 @@ const historyRecords = ref([]);
const categoryHistory = ref([]);
let chatFirstFlag = true;
let emotionTirstFlag = true;
let deepNineFirstFlag = true;
//
let cachedCategoryHistory = null;
let lastDataHash = null;
@ -525,6 +526,13 @@ const getHistoryList = async (params) => {
emotionTirstFlag = false;
}
if (deepNineFirstFlag && params.model == 3 && result.data.length != 0) {
if (!isMobile.value) {
chatStore.deepNineCall = true;
}
deepNineFirstFlag = false;
}
// chatStore
if (isMobile.value) {

Loading…
Cancel
Save