wujingjing
2024-07-25 295a801e0fb81f0da81611052ebc8a14bd0c9021
不修改原始数据
已修改1个文件
3 ■■■■ 文件已修改
src/components/chat/chatComponents/summaryCom/components/recordSet/RecordSet.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/chat/chatComponents/summaryCom/components/recordSet/RecordSet.vue
@@ -29,6 +29,7 @@
import type { RecordSet, RecordSetParamsItem } from './types';
import { recordSetMapCom } from './types';
import { filterQuery } from '/@/api/ai/chat';
import { deepClone } from '/@/utils/other';
const chartRef = ref<HTMLDivElement>(null);
const defaultDisplayType = 'line';
@@ -53,7 +54,7 @@
    data: RecordSet;
};
const chartLoading = ref(false);
const paramsValueList = ref(props.data?.params);
const paramsValueList = ref(deepClone(props.data?.params));
let groupedValues = null;
let timeIndex = undefined;