wujingjing
2024-10-09 345370831431a07d4680d0109cd1761e1e913ae9
bug;remove log
已修改2个文件
3 ■■■■ 文件已修改
src/components/chat/chatComponents/summaryCom/components/recordSet/RecordSet.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/chart.ts 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/chat/chatComponents/summaryCom/components/recordSet/RecordSet.vue
@@ -118,8 +118,8 @@
let preData = null;
const originChartType = props.data.chart_type;
let activeChartType: ChartTypeEnum = props.data?.chart_type ?? ChartTypeEnum.Line;
const originChartType = activeChartType;
const getChartTypeSeriesOption = (type: ChartTypeEnum) => {
    let result = {};
src/utils/chart.ts
@@ -117,7 +117,6 @@
};
export const axisLabelFormatter = (value, index) => {
    console.log("🚀 ~ value:", value)
    if (value >= 1000000) {
        return value / 1000000 + 'M';
    }