fix: 修改左侧图表列表的中文键名问题

This commit is contained in:
MTrun
2022-01-18 21:41:52 +08:00
parent e1bb655bf1
commit c1bbc83acd
41 changed files with 103 additions and 73 deletions
+10 -2
View File
@@ -1,7 +1,15 @@
export enum ChatCategoryEnum {
BAR = 'bar',
PIE = 'pie',
LINE = 'line',
MAP = 'map',
MORE = 'more'
}
export enum ChatCategoryEnumName {
BAR = '柱状图',
PIE = '饼图',
LINE = '折线图',
MORE = '更多',
MAP = '地图'
MAP = '地图',
MORE = '更多'
}