From 9e9d666bbe57503bb0902bda0d23bf34ae75e832 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期一, 21 十月 2024 17:17:25 +0800 Subject: [PATCH] 表格和图表展示 ;同步 colFilter --- src/components/chat/chatComponents/types.ts | 15 ++++++--------- 1 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/components/chat/chatComponents/types.ts b/src/components/chat/chatComponents/types.ts index a98a373..a16fc65 100644 --- a/src/components/chat/chatComponents/types.ts +++ b/src/components/chat/chatComponents/types.ts @@ -1,18 +1,15 @@ - export const enum ChartTypeEnum { - Scatter, - Line, - Bar, + Scatter = 'scatter', + Line = 'line', + Bar = 'bar', + Score = 'score' } export const chartTypeMapName = { [ChartTypeEnum.Line]: '鎶樼嚎鍥�', [ChartTypeEnum.Scatter]: '鏁g偣鍥�', [ChartTypeEnum.Bar]: '鏌辩姸鍥�', + [ChartTypeEnum.Score]: '', + }; -export const chartTypeMapEchart = { - [ChartTypeEnum.Scatter]: 'scatter', - [ChartTypeEnum.Line]: 'line', - [ChartTypeEnum.Bar]: 'bar', -}; -- Gitblit v1.9.3