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
@@ -1,12 +0,0 @@
import TableCategory from './index.vue'
import image from '@/assets/images/chart/Tables/tables_categary.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../index.d'
export const TableCategoryConfig: ConfigType = {
key: 'VTableCategory',
title: '归类表格',
category: ChatCategoryEnum.table,
node: TableCategory,
image
}
@@ -1,13 +0,0 @@
<template>
<div>
表格
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>
-3
View File
@@ -1,3 +0,0 @@
export enum ChatCategoryEnum {
table = '表格',
}
-4
View File
@@ -1,4 +0,0 @@
import { TableCommonConfig } from './TableCommon/index'
import { TableCategoryConfig } from './TableCategory/index'
export const TableList = [TableCommonConfig, TableCategoryConfig]
@@ -1,12 +0,0 @@
import TableCommon from './index.vue'
import image from '@/assets/images/chart/Tables/tables.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../index.d'
export const TableCommonConfig: ConfigType = {
key: 'VTableCommon',
title: '表格',
category: ChatCategoryEnum.table,
node: TableCommon,
image
}
@@ -1,13 +0,0 @@
<template>
<div>
表格
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>