From 7afe98c05c2886459c35228321fef5a11fda952b Mon Sep 17 00:00:00 2001 From: xingyu Date: Wed, 12 Apr 2023 22:36:06 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20form=20=E8=A1=A8=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/bpm/form/form.data.ts | 54 +++++++++++++++++++++++++ src/views/bpm/form/index.vue | 71 ++++++++++++++++++++++++++++++++- 2 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 src/views/bpm/form/form.data.ts diff --git a/src/views/bpm/form/form.data.ts b/src/views/bpm/form/form.data.ts new file mode 100644 index 00000000..5d4b6062 --- /dev/null +++ b/src/views/bpm/form/form.data.ts @@ -0,0 +1,54 @@ +import { BasicColumn, FormSchema, useRender } from '@/components/Table' +import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' + +export const columns: BasicColumn[] = [ + { + title: '编号', + dataIndex: 'id', + width: 100 + }, + { + title: '表单名', + dataIndex: 'name', + width: 180 + }, + { + title: '状态', + dataIndex: 'status', + width: 180, + customRender: ({ text }) => { + return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS) + } + }, + { + title: '备注', + dataIndex: 'remark', + width: 180 + }, + { + title: '创建时间', + dataIndex: 'createTime', + width: 180, + customRender: ({ text }) => { + return useRender.renderDate(text) + } + } +] + +export const searchFormSchema: FormSchema[] = [ + { + label: '表单名', + field: 'name', + component: 'Input', + colProps: { span: 8 } + }, + { + label: '状态', + field: 'status', + component: 'Select', + componentProps: { + options: getIntDictOptions(DICT_TYPE.COMMON_STATUS) + }, + colProps: { span: 8 } + } +] diff --git a/src/views/bpm/form/index.vue b/src/views/bpm/form/index.vue index 3b64cfc4..cb40bd2a 100644 --- a/src/views/bpm/form/index.vue +++ b/src/views/bpm/form/index.vue @@ -1,3 +1,72 @@ +