kongdeqiang
2023-04-26 cb5c9968b763362d399e1c7fce1129ec7434aba8
src/router/router.js
@@ -5,7 +5,7 @@
    path: '/login',
    name: 'login',
    meta: {
        title: '登录 - XBoot前后端分离开发平台 '
        title: '登录'
    },
    component: () => import('@/views/login.vue')
};
@@ -14,7 +14,7 @@
    path: '/regist',
    name: 'regist',
    meta: {
        title: '注册 - XBoot前后端分离开发平台'
        title: '注册'
    },
    component: () => import('@/views/regist.vue')
};
@@ -23,7 +23,7 @@
    path: '/regist-result',
    name: 'regist-result',
    meta: {
        title: '注册结果 - XBoot前后端分离开发平台'
        title: '注册结果'
    },
    component: () => import('@/views/regist-result.vue')
};
@@ -32,7 +32,7 @@
    path: '/reset',
    name: 'reset',
    meta: {
        title: '重置密码 - XBoot前后端分离开发平台'
        title: '重置密码'
    },
    component: () => import('@/views/reset.vue')
};
@@ -41,7 +41,7 @@
    path: '/relate',
    name: 'relate',
    meta: {
        title: '绑定账号 - XBoot前后端分离开发平台 '
        title: '绑定账号 '
    },
    component: () => import('@/views/relate.vue')
};
@@ -50,7 +50,7 @@
    path: '/authorize',
    name: 'authorize',
    meta: {
        title: 'XBoot统一认证平台 - XBoot前后端分离开发平台 '
        title: ' '
    },
    component: () => import('@/views/authorize.vue')
};
@@ -91,6 +91,14 @@
    component: () => import('@/views/sys/user-manage/userManage.vue')
};
export const table1 = {path: '/table1', meta: {title: 'table1'}, name: 'table1', component: () => import('@/views/open/table1.vue')};
export const table2 = {path: '/table2', meta: {title: 'table2'}, name: 'table2', component: () => import('@/views/open/table2.vue')};
export const table3 = {path: '/table3', meta: {title: 'table3'}, name: 'table3', component: () => import('@/views/open/table3.vue')};
export const table4 = {path: '/table4', meta: {title: 'table4'}, name: 'table4', component: () => import('@/views/open/table4.vue')};
export const table5 = {path: '/table5', meta: {title: 'table5'}, name: 'table5', component: () => import('@/views/open/table5.vue')};
export const table6 = {path: '/table6', meta: {title: 'table6'}, name: 'table6', component: () => import('@/views/open/table6.vue')};
export const table7 = {path: '/table7', meta: {title: 'table7'}, name: 'table7', component: () => import('@/views/open/table7.vue')};
// 作为Main组件的子页面展示但是不在左侧菜单显示的路由写在otherRouter里
export const otherRouter = {
    path: '/',
@@ -122,5 +130,12 @@
    ...appRouter,
    page500,
    page403,
    home2
    home2,
    table1,
    table2,
    table3,
    table4,
    table5,
    table6,
    table7,
];