Vue3 重构:form 和 model 编辑器,调整路由

This commit is contained in:
YunaiV
2023-03-25 19:45:56 +08:00
parent 9e798fb7f8
commit d0ed5edb6e
3 changed files with 29 additions and 45 deletions

View File

@ -225,7 +225,7 @@ const remainingRouter: AppRouteRecordRaw[] = [
children: [
{
path: '/manager/form/edit',
component: () => import('@/views/bpm/form/FormEditor.vue'),
component: () => import('@/views/bpm/form/editor/index.vue'),
name: 'bpmFormEditor',
meta: {
noCache: true,
@ -237,14 +237,14 @@ const remainingRouter: AppRouteRecordRaw[] = [
},
{
path: '/manager/model/edit',
component: () => import('@/views/bpm/model/modelEditor.vue'),
component: () => import('@/views/bpm/model/editor/index.vue'),
name: 'modelEditor',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '设计流程',
activeMenu: 'bpm/manager/model/design'
activeMenu: '/bpm/manager/model'
}
},
{