26 lines
593 B
JavaScript
26 lines
593 B
JavaScript
|
|
const Layout = () => import('@/layout/index.vue')
|
||
|
|
|
||
|
|
export default {
|
||
|
|
path: '/work',
|
||
|
|
component: Layout,
|
||
|
|
name: 'work',
|
||
|
|
redirect: '/work/w-index',
|
||
|
|
meta: {
|
||
|
|
auth: "daily",
|
||
|
|
title: '工作管理',
|
||
|
|
icon: 'point',
|
||
|
|
},
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'w-index',
|
||
|
|
name: 'w-index',
|
||
|
|
component: () => import('@/views/work-manage/index.vue'),
|
||
|
|
meta: {
|
||
|
|
auth: "daily",
|
||
|
|
icon: 'point',
|
||
|
|
title: '工作管理',
|
||
|
|
sidebar: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|