feat: 新增左侧图表数据

This commit is contained in:
mtruning
2022-01-15 21:05:11 +08:00
parent 551a1f2d01
commit cb7a8298ec
38 changed files with 249 additions and 38 deletions
@@ -0,0 +1,12 @@
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: 'TableCategory',
title: '归类表格',
category: ChatCategoryEnum.table,
node: TableCategory,
image
}
@@ -0,0 +1,13 @@
<template>
<div>
表格
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>
+3 -2
View File
@@ -1,3 +1,4 @@
import { tableCommonConfig } from './tableCommon/index'
import { TableCommonConfig } from './TableCommon/index'
import { TableCategoryConfig } from './TableCategory/index'
export const TableList = [tableCommonConfig]
export const TableList = [TableCommonConfig, TableCategoryConfig]
@@ -3,8 +3,8 @@ 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: 'Border',
export const TableCommonConfig: ConfigType = {
key: 'TableCommon',
title: '表格',
category: ChatCategoryEnum.table,
node: TableCommon,