src/router/routes/modules/bpm.ts
@@ -2,15 +2,7 @@
const routes: RouteRecordRaw[] = [
  {
    path: '/bpm',
    name: 'bpm',
    meta: {
      title: '工作流',
      hideInMenu: true,
    },
    children: [
      {
        path: 'process-instance/detail',
    path: '/bpm/process-instance/detail',
        component: () => import('#/views/bpm/processInstance/detail/index.vue'),
        name: 'BpmProcessInstanceDetail',
        meta: {
@@ -19,6 +11,7 @@
          icon: 'ant-design:history-outlined',
          keepAlive: false,
          hideInMenu: true,
      noBasicLayout: false,
        },
        props: (route) => {
          return {
@@ -29,6 +22,14 @@
        },
      },
      {
    path: '/bpm',
    name: 'bpm',
    meta: {
      title: '工作流',
      hideInMenu: true,
    },
    children: [
      {
        path: '/bpm/manager/form/edit',
        name: 'BpmFormEditor',
        component: () => import('#/views/bpm/form/designer/index.vue'),