|
@@ -91,10 +91,43 @@ export default [
|
|
|
meta: {
|
|
|
title: '申请退团'
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/attendance-rule',
|
|
|
+ name: 'attendance-rule',
|
|
|
+ component: () => import('@/views/attendance-rule/index'),
|
|
|
+ meta: {
|
|
|
+ title: '考勤规则'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/ranking-list',
|
|
|
+ name: 'ranking-list',
|
|
|
+ component: () => import('@/student/ranking-list/index'),
|
|
|
+ meta: {
|
|
|
+ title: '排行榜'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/exercise-record',
|
|
|
+ name: 'exercise-record',
|
|
|
+ component: () => import('@/views/exercise-record'),
|
|
|
+ meta: {
|
|
|
+ title: '练习记录'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/exercis-detail',
|
|
|
+ name: 'exercis-detail',
|
|
|
+ component: () => import('@/views/exercise-record/exercis-detail'),
|
|
|
+ meta: {
|
|
|
+ title: '练习统计'
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
+ // 只针对乐团报名
|
|
|
path: '/msuicGroup',
|
|
|
component: MusicAuth,
|
|
|
children: [
|
|
@@ -137,39 +170,8 @@ export default [
|
|
|
meta: {
|
|
|
title: '收货地址'
|
|
|
}
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/attendance-rule',
|
|
|
- name: 'attendance-rule',
|
|
|
- component: () => import('@/views/attendance-rule/index'),
|
|
|
- meta: {
|
|
|
- title: '考勤规则'
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/ranking-list',
|
|
|
- name: 'ranking-list',
|
|
|
- component: () => import('@/student/ranking-list/index'),
|
|
|
- meta: {
|
|
|
- title: '排行榜'
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/exercise-record',
|
|
|
- name: 'exercise-record',
|
|
|
- component: () => import('@/views/exercise-record'),
|
|
|
- meta: {
|
|
|
- title: '练习记录'
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/exercis-detail',
|
|
|
- name: 'exercis-detail',
|
|
|
- component: () => import('@/views/exercise-record/exercis-detail'),
|
|
|
- meta: {
|
|
|
- title: '练习统计'
|
|
|
- }
|
|
|
}
|
|
|
+ // 非乐团报名的路由不要放在这里,放到上面去
|
|
|
]
|
|
|
},
|
|
|
|