lyh
6 天以前 73e6916dfb4956e733be0542bb3f8bf87fd89925
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const ncManager = () =>import('@/module/ncManager/page/nc_manager.vue');
const ncManagerRoute = () => import('@/module/ncManager/page/nc_manager_router.vue');
const assignApproveUser = () => import('@/module/ncManager/page/assign_approve_user.vue');
const workUpcoming = () => import('@/module/ncManager/page/work_upcoming.vue');
const workDone = () => import('@/module/ncManager/page/work_done.vue');
export default [ {
  path: '/home/nc',
  component: ncManager,
  name: '流程管理',
  hidden: true,
  children: [
    { path: '/home/nc/activiti', name:'流程管理',component: ncManagerRoute,hidden:true,
      children: [
        { path: '/home/nc/activiti/approve', name:'流程配置',component: assignApproveUser,hidden:true}
      ]},
    { path: '/home/nc/work', name:'我的工作台',component: ncManagerRoute,hidden:true,
      children: [
        { path: '/home/nc/work/upcoming', name:'待办',component: workUpcoming,hidden:true},
        { path: '/home/nc/work/done', name:'已办',component: workDone,hidden:true}
    ]},
  ]
}]