|
|
|
@ -121,6 +121,7 @@
@@ -121,6 +121,7 @@
|
|
|
|
|
import { listToTree } from '/@/utils/helper/treeHelper'; |
|
|
|
|
import { listFormCategory, delFormCategory } from '/@/api/platform/workflow/extension/controller/formCategory'; |
|
|
|
|
import { PlusOutlined, FormOutlined, DeleteOutlined } from '@ant-design/icons-vue'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
|
|
|
|
|
/** 类型规范统一声明定义区域 */ |
|
|
|
|
interface TableState { |
|
|
|
@ -159,7 +160,7 @@
@@ -159,7 +160,7 @@
|
|
|
|
|
searchInfo: {}, |
|
|
|
|
treeData: [] |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { push } = useRouter(); |
|
|
|
|
const { createConfirm, createMessage } = useMessage(); |
|
|
|
|
const [registerModal, { openModal }] = useModal(); |
|
|
|
|
const [registerFormCategoryModal, { openModal: openFormCategoryModal }] = useModal(); |
|
|
|
@ -274,8 +275,8 @@
@@ -274,8 +275,8 @@
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 处理打开工作流版本管理 */ |
|
|
|
|
function handleWorkFlowVersion() { |
|
|
|
|
// todo |
|
|
|
|
function handleWorkFlowVersion(row: Recordable) { |
|
|
|
|
push({ path : `/workflow/formDefinitionJson/${row.id}`, query: { openMetaUpdate: 'y', title: `流程表单【${row.name}】` }}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function handleSelect(selectedKeys: string[]) { |
|
|
|
|