mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
feat: 新增左侧图表数据
This commit is contained in:
@@ -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>
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user