feat: 归档L03与L09审批发布能力
- 新增统一审批中心与审批管理页面,支持流程配置、审批详情与角色/用户审批对象 - 接入聊天助手、知识库、工作流的发布与删除审批,并补齐发布态校验与快照展示
This commit is contained in:
20
easyflow-ui-admin/app/src/router/routes/modules/approval.ts
Normal file
20
easyflow-ui-admin/app/src/router/routes/modules/approval.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { RouteRecordRaw } from 'vue-router';
|
||||
|
||||
import { $t } from '#/locales';
|
||||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
name: 'ApprovalDetail',
|
||||
path: '/sys/approval/detail/:id',
|
||||
component: () => import('#/views/system/approval/ApprovalDetail.vue'),
|
||||
meta: {
|
||||
title: $t('menus.system.approval'),
|
||||
hideInMenu: true,
|
||||
hideInBreadcrumb: true,
|
||||
hideInTab: true,
|
||||
activePath: '/sys/approval',
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
Reference in New Issue
Block a user