mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat(projects): 新增流程表达式功能
This commit is contained in:
@ -8,7 +8,7 @@ import { useAppStore } from '@/store/modules/app';
|
||||
import { useTable, useTableOperate } from '@/hooks/common/table';
|
||||
import { useDict } from '@/hooks/business/dict';
|
||||
import { loadDynamicComponent } from '@/utils/common';
|
||||
import GroupTag from '@/components/custom/group-tag.vue';
|
||||
import TagGroup from '@/components/custom/tag-group.vue';
|
||||
import DictTag from '@/components/custom/dict-tag.vue';
|
||||
import ButtonIcon from '@/components/custom/button-icon.vue';
|
||||
import { $t } from '@/locales';
|
||||
@ -72,7 +72,7 @@ const waitingColumns = ref<NaiveUI.TableColumn<Api.Workflow.Task>[]>([
|
||||
title: '办理人',
|
||||
align: 'center',
|
||||
width: 120,
|
||||
render: row => <GroupTag value={row.assigneeNames} />
|
||||
render: row => <TagGroup value={row.assigneeNames} />
|
||||
},
|
||||
{ key: 'createTime', title: '创建时间', align: 'center', width: 120 }
|
||||
]);
|
||||
|
@ -8,7 +8,7 @@ import { useAppStore } from '@/store/modules/app';
|
||||
import { useTable, useTableOperate } from '@/hooks/common/table';
|
||||
import { useDict } from '@/hooks/business/dict';
|
||||
import { loadDynamicComponent } from '@/utils/common';
|
||||
import GroupTag from '@/components/custom/group-tag.vue';
|
||||
import TagGroup from '@/components/custom/tag-group.vue';
|
||||
import DictTag from '@/components/custom/dict-tag.vue';
|
||||
import ButtonIcon from '@/components/custom/button-icon.vue';
|
||||
import { $t } from '@/locales';
|
||||
@ -89,7 +89,7 @@ const {
|
||||
key: 'assigneeNames',
|
||||
align: 'center',
|
||||
width: 100,
|
||||
render: row => <GroupTag value={row.assigneeNames} />
|
||||
render: row => <TagGroup value={row.assigneeNames} />
|
||||
},
|
||||
{
|
||||
title: '流程状态',
|
||||
|
Reference in New Issue
Block a user