From a124f346e8dccff52901358a420f15be8b139687 Mon Sep 17 00:00:00 2001 From: luoyp <2456821174@qq.com> Date: Tue, 1 Aug 2023 08:48:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=86=E9=A1=B5=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Tables/Tables/TablesBasic/config.ts | 35 ++++ .../Tables/Tables/TablesBasic/config.vue | 156 ++++++++++++++++++ .../Tables/Tables/TablesBasic/data.json | 60 +++++++ .../Tables/Tables/TablesBasic/index.ts | 14 ++ .../Tables/Tables/TablesBasic/index.vue | 91 ++++++++++ .../components/Tables/Tables/index.ts | 3 +- 6 files changed, 358 insertions(+), 1 deletion(-) create mode 100644 src/packages/components/Tables/Tables/TablesBasic/config.ts create mode 100644 src/packages/components/Tables/Tables/TablesBasic/config.vue create mode 100644 src/packages/components/Tables/Tables/TablesBasic/data.json create mode 100644 src/packages/components/Tables/Tables/TablesBasic/index.ts create mode 100644 src/packages/components/Tables/Tables/TablesBasic/index.vue diff --git a/src/packages/components/Tables/Tables/TablesBasic/config.ts b/src/packages/components/Tables/Tables/TablesBasic/config.ts new file mode 100644 index 00000000..eeca61bd --- /dev/null +++ b/src/packages/components/Tables/Tables/TablesBasic/config.ts @@ -0,0 +1,35 @@ +import cloneDeep from 'lodash/cloneDeep' +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { chartInitConfig } from '@/settings/designSetting' +import { TablesBasicConfig } from './index' +import dataJson from './data.json' + +const {dimensions,source} = dataJson +export const option = { + dataset:{dimensions,source}, + pagination:{ + page: 1, + pageSize:5 + }, + align:'center', + style:{ + border:'on', + singleColumn:'off', + singleLine:'off', + bottomBordered:'on', + striped:'on', + fontSize:16, + borderWidth:0, + borderColor:'black', + borderStyle:'solid' + }, + inputShow:"none" +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TablesBasicConfig.key + public attr = { ...chartInitConfig, w: 600, h: 300, zIndex: -1 } + public chartConfig = cloneDeep(TablesBasicConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Tables/Tables/TablesBasic/config.vue b/src/packages/components/Tables/Tables/TablesBasic/config.vue new file mode 100644 index 00000000..10b06699 --- /dev/null +++ b/src/packages/components/Tables/Tables/TablesBasic/config.vue @@ -0,0 +1,156 @@ + + + diff --git a/src/packages/components/Tables/Tables/TablesBasic/data.json b/src/packages/components/Tables/Tables/TablesBasic/data.json new file mode 100644 index 00000000..6d671fb6 --- /dev/null +++ b/src/packages/components/Tables/Tables/TablesBasic/data.json @@ -0,0 +1,60 @@ +{ + "dimensions":[ + { + "title": "产品名称", + "key": "productName" + }, + { + "title": "产品销量(万)", + "key": "totalSum" + }, + { + "title": "销售额(万)", + "key": "totalAmount" + } + ], + "source":[ + { + "key": 0, + "productName": "产品A1", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 1, + "productName": "产品B1", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 2, + "productName": "产品C1", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 3, + "productName": "产品D1", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 4, + "productName": "产品A2", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 5, + "productName": "产品D2", + "totalSum": 10, + "totalAmount": 10 + }, + { + "key": 6, + "productName": "产品A3", + "totalSum": 10, + "totalAmount": 10 + } + ] +} \ No newline at end of file diff --git a/src/packages/components/Tables/Tables/TablesBasic/index.ts b/src/packages/components/Tables/Tables/TablesBasic/index.ts new file mode 100644 index 00000000..5abe033a --- /dev/null +++ b/src/packages/components/Tables/Tables/TablesBasic/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const TablesBasicConfig: ConfigType = { + key: 'TablesBasic', + chartKey: 'VTablesBasic', + conKey: 'VCTablesBasic', + title: '基础表格', + category: ChatCategoryEnum.TABLE, + categoryName: ChatCategoryEnumName.TABLE, + package: PackagesCategoryEnum.TABLES, + chartFrame: ChartFrameEnum.COMMON, + image: 'tables_list.png' +} diff --git a/src/packages/components/Tables/Tables/TablesBasic/index.vue b/src/packages/components/Tables/Tables/TablesBasic/index.vue new file mode 100644 index 00000000..5dcd2901 --- /dev/null +++ b/src/packages/components/Tables/Tables/TablesBasic/index.vue @@ -0,0 +1,91 @@ + + + + + diff --git a/src/packages/components/Tables/Tables/index.ts b/src/packages/components/Tables/Tables/index.ts index dbad93ec..45ca3a63 100644 --- a/src/packages/components/Tables/Tables/index.ts +++ b/src/packages/components/Tables/Tables/index.ts @@ -1,4 +1,5 @@ import { TableListConfig } from './TableList' import { TableScrollBoardConfig } from './TableScrollBoard' +import { TablesBasicConfig } from "./TablesBasic/index"; -export default [TableListConfig, TableScrollBoardConfig] +export default [TableListConfig, TableScrollBoardConfig,TablesBasicConfig]