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.
44 lines
1.1 KiB
44 lines
1.1 KiB
3 years ago
|
import BasicLayout from '@/layouts/home'
|
||
|
|
||
|
const meta = {}
|
||
|
|
||
|
const pre = 'achievement-'
|
||
|
|
||
|
export default {
|
||
|
path: '/achievement',
|
||
|
name: 'achievement',
|
||
|
redirect: {
|
||
|
name: `${pre}list`
|
||
|
},
|
||
|
meta,
|
||
|
component: BasicLayout,
|
||
|
children: [
|
||
|
{
|
||
|
name: `${pre}list`,
|
||
|
path: `list`,
|
||
|
component: () => import('@/pages/achievement/list'),
|
||
|
meta: { title: '成绩管理' }
|
||
|
},{
|
||
|
name: `${pre}vir`,
|
||
|
path: `vir`,
|
||
|
component: () => import('@/pages/achievement/vir'),
|
||
|
meta: { title: '成绩管理' }
|
||
|
},{
|
||
|
name: `${pre}teach`,
|
||
|
path: `teach`,
|
||
|
component: () => import('@/pages/achievement/teach'),
|
||
|
meta: { title: '成绩管理' }
|
||
|
},{
|
||
|
name: `${pre}ass`,
|
||
|
path: `ass`,
|
||
|
component: () => import('@/pages/achievement/ass'),
|
||
|
meta: { title: '成绩管理' }
|
||
|
},{
|
||
|
name: `${pre}show`,
|
||
|
path: `show`,
|
||
|
component: () => import('@/pages/achievement/show'),
|
||
|
meta: { title: '实验报告' }
|
||
|
},
|
||
|
]
|
||
|
};
|