|
@@ -1,302 +1,302 @@
|
|
|
-import Vue from 'vue'
|
|
|
-import Router from 'vue-router'
|
|
|
-import Layout from '../components/layout/LayoutView'
|
|
|
-import LayoutBase from '../components/layout/LayoutBaseView'
|
|
|
-
|
|
|
-Vue.use(Router)
|
|
|
-/**
|
|
|
- * 路由配置说明:
|
|
|
- * 建议:sider menu 请不要超过三级菜单,若超过三级菜单,则应该设计为顶部主菜单 配合左侧次级菜单
|
|
|
- *
|
|
|
- * hidden: true if `hidden:true` will not show in the sidebar(default is false)
|
|
|
- * alwaysShow: true if set true, will always show the root menu, whatever its child routes length
|
|
|
- * if not set alwaysShow, only more than one route under the children
|
|
|
- * it will becomes nested mode, otherwise not show the root menu
|
|
|
- * redirect: noredirect if `redirect:noredirect` will no redirct in the breadcrumb
|
|
|
- * name:'router-name' the name is used by <keep-alive> (must set!!!)
|
|
|
- * meta : {
|
|
|
- title: 'title' the name show in submenu and breadcrumb (recommend set)
|
|
|
- icon: 'svg-name' the icon show in the sidebar,
|
|
|
- keepAlive: true keep alive component
|
|
|
- hiddenPageHeader: true if `hiddenPageHeader: true` will not show page-header(details)
|
|
|
- }
|
|
|
- **/
|
|
|
-export const constantRouterMap = [
|
|
|
- {
|
|
|
- path: '/login',
|
|
|
- component: () => import('../views/Login')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/404',
|
|
|
- component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404')
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/',
|
|
|
- component: Layout,
|
|
|
- redirect: '/login',
|
|
|
- name: '首页',
|
|
|
- hidden: true
|
|
|
- }
|
|
|
-]
|
|
|
-
|
|
|
-export default new Router({
|
|
|
- mode: 'history',
|
|
|
- base: process.env.BASE_URL,
|
|
|
- scrollBehavior: () => ({ y: 0 }),
|
|
|
- routes: constantRouterMap
|
|
|
-})
|
|
|
-
|
|
|
-export const asyncRouterMap = [
|
|
|
- {
|
|
|
- path: '/dashboard',
|
|
|
- component: Layout,
|
|
|
- name: 'dashboard',
|
|
|
- redirect: '/dashboard/workplace',
|
|
|
- meta: { title: '仪表盘', icon: 'dashboard' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/dashboard/analysis',
|
|
|
- name: 'Analysis',
|
|
|
- component: () => import('../views/dashboard/Analysis'),
|
|
|
- meta: { title: '分析页', hideHeader: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dashboard/monitor',
|
|
|
- name: 'Monitor',
|
|
|
- hidden: true,
|
|
|
- component: () => import('../views/dashboard/Monitor'),
|
|
|
- meta: { title: '监控页', hideHeader: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/dashboard/workplace',
|
|
|
- name: 'Workplace',
|
|
|
- component: () => import('../views/dashboard/Workplace'),
|
|
|
- meta: { title: '工作台' }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/form',
|
|
|
- component: LayoutBase,
|
|
|
- name: 'form',
|
|
|
- redirect: '/form/base-form',
|
|
|
- meta: { title: '表单页', icon: 'form' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/form/base-form',
|
|
|
- name: 'BaseForm',
|
|
|
- component: () => import('../views/form/BasicForm'),
|
|
|
- meta: { title: '基础表单' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/form/step-form',
|
|
|
- name: 'StepForm',
|
|
|
- component: () => import('../views/form/stepForm/StepForm'),
|
|
|
- meta: { title: '分步表单' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/form/advanced-form',
|
|
|
- name: 'AdvanceForm',
|
|
|
- component: () => import('../views/form/advancedForm/AdvancedForm'),
|
|
|
- meta: { title: '高级表单' }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list',
|
|
|
- component: LayoutBase,
|
|
|
- name: 'list',
|
|
|
- redirect: '/list/query-list',
|
|
|
- meta: { title: '列表页', icon: 'table' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/list/query-list',
|
|
|
- name: 'QueryList',
|
|
|
- component: () => import('../views/list/TableList'),
|
|
|
- meta: { title: '查询表格' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/edit-table',
|
|
|
- name: 'EditList',
|
|
|
- component: () => import('@/views/list/TableInnerEditList'),
|
|
|
- meta: { title: '内联编辑表格' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/basic-list',
|
|
|
- name: 'BasicList',
|
|
|
- component: () => import('../views/list/StandardList'),
|
|
|
- meta: { title: '标准列表' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/card',
|
|
|
- name: 'CardList',
|
|
|
- component: () => import('../views/list/CardList'),
|
|
|
- meta: { title: '卡片列表' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/search',
|
|
|
- name: 'SearchList',
|
|
|
- component: () => import('@/views/list/search/SearchLayout'),
|
|
|
- redirect: '/list/search/article',
|
|
|
- meta: { title: '搜索列表' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/list/search/article',
|
|
|
- name: 'SearchArticles',
|
|
|
- component: () => import('../views/list/TableList'),
|
|
|
- meta: { title: '搜索列表(文章)' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/search/project',
|
|
|
- name: 'SearchProjects',
|
|
|
- component: () => import('../views/list/TableList'),
|
|
|
- meta: { title: '搜索列表(项目)' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/list/search/application',
|
|
|
- name: 'SearchApplications',
|
|
|
- component: () => import('../views/list/TableList'),
|
|
|
- meta: { title: '搜索列表(应用)' }
|
|
|
- },
|
|
|
- ]
|
|
|
- },
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/profile',
|
|
|
- component: LayoutBase,
|
|
|
- name: 'profile',
|
|
|
- redirect: '/profile/basic',
|
|
|
- meta: { title: '详情页', icon: 'profile' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/profile/basic',
|
|
|
- name: 'ProfileBasic',
|
|
|
- component: () => import('../views/profile/basic/Index'),
|
|
|
- meta: { title: '基础详情页' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/profile/advanced',
|
|
|
- name: 'ProfileAdvanced',
|
|
|
- component: () => import('../views/list/TableList'),
|
|
|
- meta: { title: '高级详情页' }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/result',
|
|
|
- component: LayoutBase,
|
|
|
- name: 'result',
|
|
|
- redirect: '/result/success',
|
|
|
- meta: { title: '结果页', icon: 'check-circle-o' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/result/success',
|
|
|
- name: 'ResultSuccess',
|
|
|
- component: () => import(/* webpackChunkName: "result" */ '../views/result/Success'),
|
|
|
- meta: { title: '成功', hiddenPageHeader: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/result/fail',
|
|
|
- name: 'ResultFail',
|
|
|
- // route level code-splitting
|
|
|
- // this generates a separate chunk (about.[hash].js) for this route
|
|
|
- // which is lazy-loaded when the route is visited.
|
|
|
- component: () => import(/* webpackChunkName: "result" */ '../views/result/Error'),
|
|
|
- meta: { title: '失败', hiddenPageHeader: true }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/exception',
|
|
|
- component: Layout,
|
|
|
- name: 'exception',
|
|
|
- redirect: '/exception/403',
|
|
|
- meta: { title: '异常页', icon: 'warning' },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/exception/403',
|
|
|
- name: 'Exception403',
|
|
|
- component: () => import(/* webpackChunkName: "fail" */ '../views/exception/403'),
|
|
|
- meta: { title: '403' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/exception/404',
|
|
|
- name: 'Exception404',
|
|
|
- // route level code-splitting
|
|
|
- // this generates a separate chunk (about.[hash].js) for this route
|
|
|
- // which is lazy-loaded when the route is visited.
|
|
|
- component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404'),
|
|
|
- meta: { title: '404' }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/exception/500',
|
|
|
- name: 'Exception500',
|
|
|
- // route level code-splitting
|
|
|
- // this generates a separate chunk (about.[hash].js) for this route
|
|
|
- // which is lazy-loaded when the route is visited.
|
|
|
- component: () => import(/* webpackChunkName: "fail" */ '../views/exception/500'),
|
|
|
- meta: { title: '500' }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account',
|
|
|
- component: Layout,
|
|
|
- name: 'account',
|
|
|
- meta: { title: '个人页', icon: 'user', keepAlive: true },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/account/center',
|
|
|
- name: 'center',
|
|
|
- component: () => import('@/views/account/center/Index'),
|
|
|
- meta: { title: '个人中心', keepAlive: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account/settings',
|
|
|
- name: 'settings',
|
|
|
- component: () => import('@/views/account/settings/Index'),
|
|
|
- meta: { title: '个人设置', hideHeader: true, keepAlive: true },
|
|
|
- redirect: '/account/settings/base',
|
|
|
- alwaysShow: true,
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: '/account/settings/base',
|
|
|
- name: 'BaseSettings',
|
|
|
- component: () => import('@/views/account/settings/BaseSetting'),
|
|
|
- meta: { title: '基本设置', hidden: true, keepAlive: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account/settings/security',
|
|
|
- name: 'SecuritySettings',
|
|
|
- component: () => import('@/views/account/settings/Security'),
|
|
|
- meta: { title: '安全设置', hidden: true, keepAlive: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account/settings/custom',
|
|
|
- name: 'CustomSettings',
|
|
|
- component: () => import('@/views/account/settings/Custom'),
|
|
|
- meta: { title: '个性化设置', hidden: true, keepAlive: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account/settings/binding',
|
|
|
- name: 'BindingSettings',
|
|
|
- component: () => import('@/views/account/settings/Binding'),
|
|
|
- meta: { title: '账户绑定', hidden: true, keepAlive: true }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/account/settings/notification',
|
|
|
- name: 'NotificationSettings',
|
|
|
- component: () => import('@/views/account/settings/Notification'),
|
|
|
- meta: { title: '新消息通知', hidden: true, keepAlive: true }
|
|
|
- },
|
|
|
- ]
|
|
|
- },
|
|
|
-
|
|
|
- ]
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- path: '*', redirect: '/404', hidden: true
|
|
|
- }
|
|
|
+import Vue from 'vue'
|
|
|
+import Router from 'vue-router'
|
|
|
+import Layout from '../components/layout/LayoutView'
|
|
|
+import LayoutBase from '../components/layout/LayoutBaseView'
|
|
|
+
|
|
|
+Vue.use(Router)
|
|
|
+/**
|
|
|
+ * 路由配置说明:
|
|
|
+ * 建议:sider menu 请不要超过三级菜单,若超过三级菜单,则应该设计为顶部主菜单 配合左侧次级菜单
|
|
|
+ *
|
|
|
+ * hidden: true if `hidden:true` will not show in the sidebar(default is false)
|
|
|
+ * alwaysShow: true if set true, will always show the root menu, whatever its child routes length
|
|
|
+ * if not set alwaysShow, only more than one route under the children
|
|
|
+ * it will becomes nested mode, otherwise not show the root menu
|
|
|
+ * redirect: noredirect if `redirect:noredirect` will no redirct in the breadcrumb
|
|
|
+ * name:'router-name' the name is used by <keep-alive> (must set!!!)
|
|
|
+ * meta : {
|
|
|
+ title: 'title' the name show in submenu and breadcrumb (recommend set)
|
|
|
+ icon: 'svg-name' the icon show in the sidebar,
|
|
|
+ keepAlive: true keep alive component
|
|
|
+ hiddenPageHeader: true if `hiddenPageHeader: true` will not show page-header(details)
|
|
|
+ }
|
|
|
+ **/
|
|
|
+export const constantRouterMap = [
|
|
|
+ {
|
|
|
+ path: '/login',
|
|
|
+ component: () => import('../views/Login')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/404',
|
|
|
+ component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/',
|
|
|
+ component: Layout,
|
|
|
+ redirect: '/login',
|
|
|
+ name: '首页',
|
|
|
+ hidden: true
|
|
|
+ }
|
|
|
+]
|
|
|
+
|
|
|
+export default new Router({
|
|
|
+ mode: 'history',
|
|
|
+ base: process.env.BASE_URL,
|
|
|
+ scrollBehavior: () => ({ y: 0 }),
|
|
|
+ routes: constantRouterMap
|
|
|
+})
|
|
|
+
|
|
|
+export const asyncRouterMap = [
|
|
|
+ {
|
|
|
+ path: '/dashboard',
|
|
|
+ component: Layout,
|
|
|
+ name: 'dashboard',
|
|
|
+ redirect: '/dashboard/workplace',
|
|
|
+ meta: { title: '仪表盘', icon: 'dashboard' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/dashboard/analysis',
|
|
|
+ name: 'Analysis',
|
|
|
+ component: () => import('../views/dashboard/Analysis'),
|
|
|
+ meta: { title: '分析页', hideHeader: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dashboard/monitor',
|
|
|
+ name: 'Monitor',
|
|
|
+ hidden: true,
|
|
|
+ component: () => import('../views/dashboard/Monitor'),
|
|
|
+ meta: { title: '监控页', hideHeader: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/dashboard/workplace',
|
|
|
+ name: 'Workplace',
|
|
|
+ component: () => import('../views/dashboard/Workplace'),
|
|
|
+ meta: { title: '工作台' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/form',
|
|
|
+ component: LayoutBase,
|
|
|
+ name: 'form',
|
|
|
+ redirect: '/form/base-form',
|
|
|
+ meta: { title: '表单页', icon: 'form' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/form/base-form',
|
|
|
+ name: 'BaseForm',
|
|
|
+ component: () => import('../views/form/BasicForm'),
|
|
|
+ meta: { title: '基础表单' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/form/step-form',
|
|
|
+ name: 'StepForm',
|
|
|
+ component: () => import('../views/form/stepForm/StepForm'),
|
|
|
+ meta: { title: '分步表单' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/form/advanced-form',
|
|
|
+ name: 'AdvanceForm',
|
|
|
+ component: () => import('../views/form/advancedForm/AdvancedForm'),
|
|
|
+ meta: { title: '高级表单' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list',
|
|
|
+ component: LayoutBase,
|
|
|
+ name: 'list',
|
|
|
+ redirect: '/list/query-list',
|
|
|
+ meta: { title: '列表页', icon: 'table' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/list/query-list',
|
|
|
+ name: 'QueryList',
|
|
|
+ component: () => import('../views/list/TableList'),
|
|
|
+ meta: { title: '查询表格' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/edit-table',
|
|
|
+ name: 'EditList',
|
|
|
+ component: () => import('@/views/list/TableInnerEditList'),
|
|
|
+ meta: { title: '内联编辑表格' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/basic-list',
|
|
|
+ name: 'BasicList',
|
|
|
+ component: () => import('../views/list/StandardList'),
|
|
|
+ meta: { title: '标准列表' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/card',
|
|
|
+ name: 'CardList',
|
|
|
+ component: () => import('../views/list/CardList'),
|
|
|
+ meta: { title: '卡片列表' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/search',
|
|
|
+ name: 'SearchList',
|
|
|
+ component: () => import('@/views/list/search/SearchLayout'),
|
|
|
+ redirect: '/list/search/article',
|
|
|
+ meta: { title: '搜索列表' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/list/search/article',
|
|
|
+ name: 'SearchArticles',
|
|
|
+ component: () => import('../views/list/TableList'),
|
|
|
+ meta: { title: '搜索列表(文章)' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/search/project',
|
|
|
+ name: 'SearchProjects',
|
|
|
+ component: () => import('../views/list/TableList'),
|
|
|
+ meta: { title: '搜索列表(项目)' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/list/search/application',
|
|
|
+ name: 'SearchApplications',
|
|
|
+ component: () => import('../views/list/TableList'),
|
|
|
+ meta: { title: '搜索列表(应用)' }
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/profile',
|
|
|
+ component: Layout,
|
|
|
+ name: 'profile',
|
|
|
+ redirect: '/profile/basic',
|
|
|
+ meta: { title: '详情页', icon: 'profile' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/profile/basic',
|
|
|
+ name: 'ProfileBasic',
|
|
|
+ component: () => import('@/views/profile/basic/Index'),
|
|
|
+ meta: { title: '基础详情页' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/profile/advanced',
|
|
|
+ name: 'ProfileAdvanced',
|
|
|
+ component: () => import('@/views/profile/advanced/Advanced'),
|
|
|
+ meta: { title: '高级详情页' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/result',
|
|
|
+ component: LayoutBase,
|
|
|
+ name: 'result',
|
|
|
+ redirect: '/result/success',
|
|
|
+ meta: { title: '结果页', icon: 'check-circle-o' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/result/success',
|
|
|
+ name: 'ResultSuccess',
|
|
|
+ component: () => import(/* webpackChunkName: "result" */ '../views/result/Success'),
|
|
|
+ meta: { title: '成功', hiddenPageHeader: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/result/fail',
|
|
|
+ name: 'ResultFail',
|
|
|
+ // route level code-splitting
|
|
|
+ // this generates a separate chunk (about.[hash].js) for this route
|
|
|
+ // which is lazy-loaded when the route is visited.
|
|
|
+ component: () => import(/* webpackChunkName: "result" */ '../views/result/Error'),
|
|
|
+ meta: { title: '失败', hiddenPageHeader: true }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/exception',
|
|
|
+ component: Layout,
|
|
|
+ name: 'exception',
|
|
|
+ redirect: '/exception/403',
|
|
|
+ meta: { title: '异常页', icon: 'warning' },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/exception/403',
|
|
|
+ name: 'Exception403',
|
|
|
+ component: () => import(/* webpackChunkName: "fail" */ '../views/exception/403'),
|
|
|
+ meta: { title: '403' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/exception/404',
|
|
|
+ name: 'Exception404',
|
|
|
+ // route level code-splitting
|
|
|
+ // this generates a separate chunk (about.[hash].js) for this route
|
|
|
+ // which is lazy-loaded when the route is visited.
|
|
|
+ component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404'),
|
|
|
+ meta: { title: '404' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/exception/500',
|
|
|
+ name: 'Exception500',
|
|
|
+ // route level code-splitting
|
|
|
+ // this generates a separate chunk (about.[hash].js) for this route
|
|
|
+ // which is lazy-loaded when the route is visited.
|
|
|
+ component: () => import(/* webpackChunkName: "fail" */ '../views/exception/500'),
|
|
|
+ meta: { title: '500' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account',
|
|
|
+ component: Layout,
|
|
|
+ name: 'account',
|
|
|
+ meta: { title: '个人页', icon: 'user', keepAlive: true },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/account/center',
|
|
|
+ name: 'center',
|
|
|
+ component: () => import('@/views/account/center/Index'),
|
|
|
+ meta: { title: '个人中心', keepAlive: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/settings',
|
|
|
+ name: 'settings',
|
|
|
+ component: () => import('@/views/account/settings/Index'),
|
|
|
+ meta: { title: '个人设置', hideHeader: true, keepAlive: true },
|
|
|
+ redirect: '/account/settings/base',
|
|
|
+ alwaysShow: true,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/account/settings/base',
|
|
|
+ name: 'BaseSettings',
|
|
|
+ component: () => import('@/views/account/settings/BaseSetting'),
|
|
|
+ meta: { title: '基本设置', hidden: true, keepAlive: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/settings/security',
|
|
|
+ name: 'SecuritySettings',
|
|
|
+ component: () => import('@/views/account/settings/Security'),
|
|
|
+ meta: { title: '安全设置', hidden: true, keepAlive: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/settings/custom',
|
|
|
+ name: 'CustomSettings',
|
|
|
+ component: () => import('@/views/account/settings/Custom'),
|
|
|
+ meta: { title: '个性化设置', hidden: true, keepAlive: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/settings/binding',
|
|
|
+ name: 'BindingSettings',
|
|
|
+ component: () => import('@/views/account/settings/Binding'),
|
|
|
+ meta: { title: '账户绑定', hidden: true, keepAlive: true }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/account/settings/notification',
|
|
|
+ name: 'NotificationSettings',
|
|
|
+ component: () => import('@/views/account/settings/Notification'),
|
|
|
+ meta: { title: '新消息通知', hidden: true, keepAlive: true }
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ path: '*', redirect: '/404', hidden: true
|
|
|
+ }
|
|
|
]
|