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
520 B
17 lines
520 B
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',
|
|
component: () => import('/@/views/flow/definition/warm-flow.vue'),
|
|
name: 'Design',
|
|
meta: { title: '流程设计', activeMenu: '/flow/definition' }
|
|
}
|
|
]
|
|
},
|
|
]
|