From ca4c704cd8259191631aec3b55c3a96cde9fd7e9 Mon Sep 17 00:00:00 2001 From: xingyu Date: Wed, 12 Apr 2023 22:25:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=94=A8=E6=88=B7=E5=88=86=E7=BB=84?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/bpm/group/GroupModal.vue | 49 +++++++++++++ src/views/bpm/group/group.data.ts | 112 +++++++++++++++++++++++++++++ src/views/bpm/group/index.vue | 74 ++++++++++++++++++- 3 files changed, 234 insertions(+), 1 deletion(-) create mode 100644 src/views/bpm/group/GroupModal.vue create mode 100644 src/views/bpm/group/group.data.ts diff --git a/src/views/bpm/group/GroupModal.vue b/src/views/bpm/group/GroupModal.vue new file mode 100644 index 00000000..9800f6dd --- /dev/null +++ b/src/views/bpm/group/GroupModal.vue @@ -0,0 +1,49 @@ + + diff --git a/src/views/bpm/group/group.data.ts b/src/views/bpm/group/group.data.ts new file mode 100644 index 00000000..35d41728 --- /dev/null +++ b/src/views/bpm/group/group.data.ts @@ -0,0 +1,112 @@ +import { BasicColumn, FormSchema, useRender } from '@/components/Table' +import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' +import { getListSimpleUsers } from '@/api/system/user' + +export const columns: BasicColumn[] = [ + { + title: '编号', + dataIndex: 'id', + width: 100 + }, + { + title: '组名', + dataIndex: 'name', + width: 180 + }, + { + title: '描述', + dataIndex: 'description', + width: 200 + }, + { + title: '成员', + dataIndex: 'memberUserIds', + width: 180, + customRender: ({ text }) => { + return useRender.renderTags(text) + } + }, + { + title: '状态', + dataIndex: 'status', + width: 180, + customRender: ({ text }) => { + return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS) + } + }, + { + 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 } + }, + { + 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: 'description', + required: true, + component: 'Input' + }, + { + label: '成员', + field: 'memberUserIds', + required: true, + component: 'ApiSelect', + componentProps: { + api: () => getListSimpleUsers(), + labelField: 'nickname', + valueField: 'id', + mode: 'multiple' + }, + colProps: { span: 8 } + }, + { + label: '状态', + field: 'status', + component: 'Select', + defaultValue: 0, + componentProps: { + options: getIntDictOptions(DICT_TYPE.COMMON_STATUS) + } + } +] diff --git a/src/views/bpm/group/index.vue b/src/views/bpm/group/index.vue index 3b64cfc4..d99ba2d5 100644 --- a/src/views/bpm/group/index.vue +++ b/src/views/bpm/group/index.vue @@ -1,3 +1,75 @@ +