|
@@ -29,51 +29,51 @@ export default new Router({
|
|
|
// 审核申请书
|
|
|
{
|
|
|
path: '/adminExamine',
|
|
|
- component: () => import('../views/adminExamine/index.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminExamine/index.vue'),
|
|
|
meta: { title: '审核申请书' },
|
|
|
},
|
|
|
{
|
|
|
path: '/adminExamine/detail',
|
|
|
- component: () => import('../views/adminExamine/detail.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminExamine/detail.vue'),
|
|
|
meta: { title: '资料审核' },
|
|
|
},
|
|
|
// 专家评分
|
|
|
{
|
|
|
path: '/adminScore',
|
|
|
- component: () => import('../views/adminScore/index.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminScore/index.vue'),
|
|
|
meta: { title: '专家评分' },
|
|
|
},
|
|
|
{
|
|
|
path: '/adminScore/detail',
|
|
|
- component: () => import('../views/adminScore/detail.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminScore/detail.vue'),
|
|
|
meta: { title: '专家评分查看' },
|
|
|
},
|
|
|
// 专家会审
|
|
|
{
|
|
|
path: '/adminMeet',
|
|
|
- component: () => import('../views/adminMeet/index.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminMeet/index.vue'),
|
|
|
meta: { title: '专家会审' },
|
|
|
},
|
|
|
{
|
|
|
path: '/adminMeet/detail',
|
|
|
- component: () => import('../views/adminMeet/detail.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminMeet/detail.vue'),
|
|
|
meta: { title: '专家会审记录' },
|
|
|
},
|
|
|
// 完善资料
|
|
|
{
|
|
|
path: '/adminPerfect',
|
|
|
- component: () => import('../views/adminPerfect/index.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminPerfect/index.vue'),
|
|
|
meta: { title: '完善资料' },
|
|
|
},
|
|
|
{
|
|
|
path: '/adminPerfect/detail',
|
|
|
- component: () => import('../views/adminPerfect/detail.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminPerfect/detail.vue'),
|
|
|
meta: { title: '资料查看' },
|
|
|
},
|
|
|
// 证书发放
|
|
|
{
|
|
|
path: '/adminCate',
|
|
|
- component: () => import('../views/adminCate/index.vue'),
|
|
|
+ component: () => import('../views/adminCenter/adminCate/index.vue'),
|
|
|
meta: { title: '证书发放' },
|
|
|
},
|
|
|
],
|
|
@@ -83,6 +83,12 @@ export default new Router({
|
|
|
component: () => import('../views/Login.vue'),
|
|
|
meta: { title: '登录' },
|
|
|
},
|
|
|
+ // 用戶申报
|
|
|
+ {
|
|
|
+ path: '/userDeclare',
|
|
|
+ component: () => import('../views/userDeclare/index.vue'),
|
|
|
+ meta: { title: '用户申报' },
|
|
|
+ },
|
|
|
{
|
|
|
path: '*',
|
|
|
redirect: '/404',
|