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 @@
- 开发中
+
+
+
+
+ {{ t('action.create') }}
+
+
+
+
+
+
+
+
+
+
+