|
@@ -46,6 +46,68 @@ const service = [
|
|
|
component: () => import('../views/service/interflow/index.vue'),
|
|
|
},
|
|
|
];
|
|
|
+const account = [
|
|
|
+ {
|
|
|
+ path: '/account/index',
|
|
|
+ meta: { title: '管理中心' },
|
|
|
+ component: () => import('../views/account/index.vue'),
|
|
|
+ },
|
|
|
+ // 个人用户
|
|
|
+ {
|
|
|
+ path: '/account/userCenter/basic/index',
|
|
|
+ meta: { title: '基本信息' },
|
|
|
+ component: () => import('../views/account/userCenter/basic/index.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/userCenter/password/index',
|
|
|
+ meta: { title: '修改密码' },
|
|
|
+ component: () => import('../views/account/userCenter/password/index.vue'),
|
|
|
+ },
|
|
|
+ // 机构用户
|
|
|
+ {
|
|
|
+ path: '/account/mechCenter/users/index',
|
|
|
+ meta: { title: '平台用户' },
|
|
|
+ component: () => import('../views/account/mechCenter/users/index.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/mechCenter/users/detail',
|
|
|
+ meta: { title: '平台用户-信息维护' },
|
|
|
+ component: () => import('../views/account/mechCenter/users/detail.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/mechCenter/patent/index',
|
|
|
+ meta: { title: '平台用户-专利信息' },
|
|
|
+ component: () => import('../views/account/mechCenter/patent/index.vue'),
|
|
|
+ },
|
|
|
+ // 管理用户
|
|
|
+ {
|
|
|
+ path: '/account/adminCenter/mechanism/index',
|
|
|
+ meta: { title: '机构用户' },
|
|
|
+ component: () => import('../views/account/adminCenter/mechanism/index.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/adminCenter/mechanism/detail',
|
|
|
+ meta: { title: '机构用户-信息维护' },
|
|
|
+ component: () => import('../views/account/adminCenter/mechanism/detail.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/adminCenter/users/index',
|
|
|
+ meta: { title: '平台用户' },
|
|
|
+ component: () => import('../views/account/adminCenter/users/index.vue'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/adminCenter/users/detail',
|
|
|
+ meta: { title: '平台用户-信息维护' },
|
|
|
+ component: () => import('../views/account/adminCenter/users/detail.vue'),
|
|
|
+ },
|
|
|
+];
|
|
|
+const patent = [
|
|
|
+ {
|
|
|
+ path: '/patent/index',
|
|
|
+ meta: { title: '专利管理中心' },
|
|
|
+ component: () => import('../views/patent/index.vue'),
|
|
|
+ },
|
|
|
+];
|
|
|
const web = [
|
|
|
{
|
|
|
path: '/',
|
|
@@ -55,6 +117,8 @@ const web = [
|
|
|
},
|
|
|
...market,
|
|
|
...service,
|
|
|
+ ...account,
|
|
|
+ ...patent,
|
|
|
{
|
|
|
path: '/login',
|
|
|
name: 'login',
|