You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
526 B
17 lines
526 B
|
1 month ago
|
import SmartLayout from '/@/layout/index.vue';
|
||
|
|
export const flowRouters = [
|
||
|
|
{
|
||
|
|
path: '/flow/flow-design',
|
||
|
|
component: SmartLayout,
|
||
|
|
hidden: true,
|
||
|
|
permissions: ['flow:definition:design'],
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'index/:id(\\d+)',
|
||
|
|
component: () => import('/@/views/flow/definition/warm-flow.vue'),
|
||
|
|
name: 'Design',
|
||
|
|
meta: { title: '流程设计', activeMenu: '/flow/definition' }
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
]
|