From 26dd8eefc930f947493b13ad44f765ee28201c0f Mon Sep 17 00:00:00 2001 From: xingyuv Date: Thu, 23 Mar 2023 18:26:01 +0800 Subject: [PATCH] feat: codegen table --- src/views/infra/codegen/CodegenModal.vue | 54 +++++++++++ src/views/infra/codegen/codegen.data.ts | 114 +++++++++++++++++++++++ src/views/infra/codegen/index.vue | 80 +++++++++++++++- 3 files changed, 247 insertions(+), 1 deletion(-) create mode 100644 src/views/infra/codegen/CodegenModal.vue create mode 100644 src/views/infra/codegen/codegen.data.ts diff --git a/src/views/infra/codegen/CodegenModal.vue b/src/views/infra/codegen/CodegenModal.vue new file mode 100644 index 0000000..3be4dd8 --- /dev/null +++ b/src/views/infra/codegen/CodegenModal.vue @@ -0,0 +1,54 @@ + + diff --git a/src/views/infra/codegen/codegen.data.ts b/src/views/infra/codegen/codegen.data.ts new file mode 100644 index 0000000..3dab369 --- /dev/null +++ b/src/views/infra/codegen/codegen.data.ts @@ -0,0 +1,114 @@ +import { getDataSourceConfigList } from '@/api/infra/dataSourceConfig' +import { BasicColumn, FormSchema, useRender } from '@/components/Table' +import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' + +const dataSourceConfigs = await getDataSourceConfigList() + +export const columns: BasicColumn[] = [ + { + title: '数据源', + dataIndex: 'dataSourceConfigId', + width: 100, + customRender: ({ text }) => { + for (const config of dataSourceConfigs) { + if (text === config.id) { + return config.name + } + } + return '未知【' + text + '】' + } + }, + { + title: '表名称', + dataIndex: 'tableName', + width: 200 + }, + { + title: '表描述', + dataIndex: 'tableComment', + width: 120 + }, + { + title: '实体', + dataIndex: 'className', + width: 200 + }, + { + title: '创建时间', + dataIndex: 'createTime', + width: 180, + customRender: ({ text }) => { + return useRender.renderDate(text) + } + }, + { + title: '更新时间', + dataIndex: 'updateTime', + width: 180, + customRender: ({ text }) => { + return useRender.renderDate(text) + } + } +] + +export const searchFormSchema: FormSchema[] = [ + { + label: '表名称', + field: 'tableName', + component: 'Input', + colProps: { span: 8 } + }, + { + label: '表描述', + field: 'tableComment', + component: 'Input', + colProps: { span: 8 } + }, + { + label: '创建时间', + field: 'createTime', + component: 'RangePicker', + colProps: { span: 8 } + } +] + +export const formSchema: FormSchema[] = [ + { + label: '编号', + field: 'id', + show: false, + component: 'Input' + }, + { + label: '岗位名称', + field: 'name', + required: true, + component: 'Input' + }, + { + label: '岗位编码', + field: 'code', + required: true, + component: 'Input' + }, + { + label: '岗位顺序', + field: 'sort', + required: true, + component: 'InputNumber' + }, + { + label: '状态', + field: 'status', + component: 'Select', + defaultValue: 0, + componentProps: { + options: getIntDictOptions(DICT_TYPE.COMMON_STATUS) + } + }, + { + label: '备注', + field: 'remark', + component: 'InputTextArea' + } +] diff --git a/src/views/infra/codegen/index.vue b/src/views/infra/codegen/index.vue index 3b64cfc..429cbf4 100644 --- a/src/views/infra/codegen/index.vue +++ b/src/views/infra/codegen/index.vue @@ -1,3 +1,81 @@ +