Commit 69cef260 by Sendya

add demo permission

parent 1415b75d
...@@ -66,10 +66,11 @@ ...@@ -66,10 +66,11 @@
} }
}, },
created() { created() {
this.menus = asyncRouterMap this.menus = this.mainMenu
}, },
computed: { computed: {
...mapState({ ...mapState({
mainMenu: state => state.permission.addRouters,
siderOpen: state => state.app.sidebar.opened, siderOpen: state => state.app.sidebar.opened,
theme: state => state.app.theme, theme: state => state.app.theme,
device: state => state.app.device, device: state => state.app.device,
......
...@@ -52,26 +52,26 @@ export const asyncRouterMap = [ ...@@ -52,26 +52,26 @@ export const asyncRouterMap = [
component: Layout, component: Layout,
name: 'dashboard', name: 'dashboard',
redirect: '/dashboard/workplace', redirect: '/dashboard/workplace',
meta: { title: '仪表盘', icon: 'dashboard' }, meta: { title: '仪表盘', icon: 'dashboard', permission: [ 'dashboard' ] },
children: [ children: [
{ {
path: '/dashboard/analysis', path: '/dashboard/analysis',
name: 'Analysis', name: 'Analysis',
component: () => import('../views/dashboard/Analysis'), component: () => import('../views/dashboard/Analysis'),
meta: { title: '分析页', hideHeader: true } meta: { title: '分析页', hideHeader: true, permission: [ 'dashboard' ] }
}, },
{ {
path: '/dashboard/monitor', path: '/dashboard/monitor',
name: 'Monitor', name: 'Monitor',
hidden: true, hidden: true,
component: () => import('../views/dashboard/Monitor'), component: () => import('../views/dashboard/Monitor'),
meta: { title: '监控页', hideHeader: true } meta: { title: '监控页', hideHeader: true, permission: [ 'dashboard' ] }
}, },
{ {
path: '/dashboard/workplace', path: '/dashboard/workplace',
name: 'Workplace', name: 'Workplace',
component: () => import('../views/dashboard/Workplace'), component: () => import('../views/dashboard/Workplace'),
meta: { title: '工作台' } meta: { title: '工作台', permission: [ 'dashboard' ] }
} }
] ]
}, },
...@@ -80,25 +80,25 @@ export const asyncRouterMap = [ ...@@ -80,25 +80,25 @@ export const asyncRouterMap = [
component: LayoutBase, component: LayoutBase,
name: 'form', name: 'form',
redirect: '/form/base-form', redirect: '/form/base-form',
meta: { title: '表单页', icon: 'form' }, meta: { title: '表单页', icon: 'form', permission: [ 'form' ] },
children: [ children: [
{ {
path: '/form/base-form', path: '/form/base-form',
name: 'BaseForm', name: 'BaseForm',
component: () => import('../views/form/BasicForm'), component: () => import('../views/form/BasicForm'),
meta: { title: '基础表单' } meta: { title: '基础表单', permission: [ 'form' ] }
}, },
{ {
path: '/form/step-form', path: '/form/step-form',
name: 'StepForm', name: 'StepForm',
component: () => import('../views/form/stepForm/StepForm'), component: () => import('../views/form/stepForm/StepForm'),
meta: { title: '分步表单' } meta: { title: '分步表单', permission: [ 'form' ] }
}, },
{ {
path: '/form/advanced-form', path: '/form/advanced-form',
name: 'AdvanceForm', name: 'AdvanceForm',
component: () => import('../views/form/advancedForm/AdvancedForm'), component: () => import('../views/form/advancedForm/AdvancedForm'),
meta: { title: '高级表单' } meta: { title: '高级表单', permission: [ 'form' ] }
} }
] ]
}, },
...@@ -107,68 +107,68 @@ export const asyncRouterMap = [ ...@@ -107,68 +107,68 @@ export const asyncRouterMap = [
component: LayoutBase, component: LayoutBase,
name: 'list', name: 'list',
redirect: '/list/query-list', redirect: '/list/query-list',
meta: { title: '列表页', icon: 'table' }, meta: { title: '列表页', icon: 'table', permission: [ 'table' ] },
children: [ children: [
{ {
path: '/list/query-list', path: '/list/query-list',
name: 'QueryList', name: 'QueryList',
component: () => import('@/views/list/TableList'), component: () => import('@/views/list/TableList'),
meta: { title: '查询表格' } meta: { title: '查询表格', permission: [ 'table' ] }
}, },
{ {
path: '/list/edit-table', path: '/list/edit-table',
name: 'EditList', name: 'EditList',
component: () => import('@/views/list/TableInnerEditList'), component: () => import('@/views/list/TableInnerEditList'),
meta: { title: '内联编辑表格' } meta: { title: '内联编辑表格', permission: [ 'table' ] }
}, },
{ {
path: '/list/role-list', path: '/list/role-list',
name: 'RoleList', name: 'RoleList',
component: () => import('@/views/list/RoleList'), component: () => import('@/views/list/RoleList'),
meta: { title: '角色列表' } meta: { title: '角色列表', permission: [ 'table' ] }
}, },
{ {
path: '/list/permission-list', path: '/list/permission-list',
name: 'PermissionList', name: 'PermissionList',
component: () => import('@/views/list/PermissionList'), component: () => import('@/views/list/PermissionList'),
meta: { title: '权限列表' } meta: { title: '权限列表', permission: [ 'table' ] }
}, },
{ {
path: '/list/basic-list', path: '/list/basic-list',
name: 'BasicList', name: 'BasicList',
component: () => import('@/views/list/StandardList'), component: () => import('@/views/list/StandardList'),
meta: { title: '标准列表' } meta: { title: '标准列表', permission: [ 'table' ] }
}, },
{ {
path: '/list/card', path: '/list/card',
name: 'CardList', name: 'CardList',
component: () => import('@/views/list/CardList'), component: () => import('@/views/list/CardList'),
meta: { title: '卡片列表' } meta: { title: '卡片列表', permission: [ 'table' ] }
}, },
{ {
path: '/list/search', path: '/list/search',
name: 'SearchList', name: 'SearchList',
component: () => import('@/views/list/search/SearchLayout'), component: () => import('@/views/list/search/SearchLayout'),
redirect: '/list/search/article', redirect: '/list/search/article',
meta: { title: '搜索列表' }, meta: { title: '搜索列表', permission: [ 'table' ] },
children: [ children: [
{ {
path: '/list/search/article', path: '/list/search/article',
name: 'SearchArticles', name: 'SearchArticles',
component: () => import('../views/list/TableList'), component: () => import('../views/list/TableList'),
meta: { title: '搜索列表(文章)' } meta: { title: '搜索列表(文章)', permission: [ 'table' ] }
}, },
{ {
path: '/list/search/project', path: '/list/search/project',
name: 'SearchProjects', name: 'SearchProjects',
component: () => import('../views/list/TableList'), component: () => import('../views/list/TableList'),
meta: { title: '搜索列表(项目)' } meta: { title: '搜索列表(项目)', permission: [ 'table' ] }
}, },
{ {
path: '/list/search/application', path: '/list/search/application',
name: 'SearchApplications', name: 'SearchApplications',
component: () => import('../views/list/TableList'), component: () => import('../views/list/TableList'),
meta: { title: '搜索列表(应用)' } meta: { title: '搜索列表(应用)', permission: [ 'table' ] }
}, },
] ]
}, },
...@@ -179,19 +179,19 @@ export const asyncRouterMap = [ ...@@ -179,19 +179,19 @@ export const asyncRouterMap = [
component: Layout, component: Layout,
name: 'profile', name: 'profile',
redirect: '/profile/basic', redirect: '/profile/basic',
meta: { title: '详情页', icon: 'profile' }, meta: { title: '详情页', icon: 'profile', permission: [ 'profile' ] },
children: [ children: [
{ {
path: '/profile/basic', path: '/profile/basic',
name: 'ProfileBasic', name: 'ProfileBasic',
component: () => import('@/views/profile/basic/Index'), component: () => import('@/views/profile/basic/Index'),
meta: { title: '基础详情页' } meta: { title: '基础详情页', permission: [ 'profile' ] }
}, },
{ {
path: '/profile/advanced', path: '/profile/advanced',
name: 'ProfileAdvanced', name: 'ProfileAdvanced',
component: () => import('@/views/profile/advanced/Advanced'), component: () => import('@/views/profile/advanced/Advanced'),
meta: { title: '高级详情页' } meta: { title: '高级详情页', permission: [ 'profile' ] }
} }
] ]
}, },
...@@ -200,13 +200,13 @@ export const asyncRouterMap = [ ...@@ -200,13 +200,13 @@ export const asyncRouterMap = [
component: LayoutBase, component: LayoutBase,
name: 'result', name: 'result',
redirect: '/result/success', redirect: '/result/success',
meta: { title: '结果页', icon: 'check-circle-o' }, meta: { title: '结果页', icon: 'check-circle-o', permission: [ 'result' ] },
children: [ children: [
{ {
path: '/result/success', path: '/result/success',
name: 'ResultSuccess', name: 'ResultSuccess',
component: () => import(/* webpackChunkName: "result" */ '../views/result/Success'), component: () => import(/* webpackChunkName: "result" */ '../views/result/Success'),
meta: { title: '成功', hiddenPageHeader: true } meta: { title: '成功', hiddenPageHeader: true, permission: [ 'result' ] }
}, },
{ {
path: '/result/fail', path: '/result/fail',
...@@ -215,7 +215,7 @@ export const asyncRouterMap = [ ...@@ -215,7 +215,7 @@ export const asyncRouterMap = [
// this generates a separate chunk (about.[hash].js) for this route // this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited. // which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "result" */ '../views/result/Error'), component: () => import(/* webpackChunkName: "result" */ '../views/result/Error'),
meta: { title: '失败', hiddenPageHeader: true } meta: { title: '失败', hiddenPageHeader: true, permission: [ 'result' ] }
} }
] ]
}, },
...@@ -224,13 +224,13 @@ export const asyncRouterMap = [ ...@@ -224,13 +224,13 @@ export const asyncRouterMap = [
component: Layout, component: Layout,
name: 'exception', name: 'exception',
redirect: '/exception/403', redirect: '/exception/403',
meta: { title: '异常页', icon: 'warning' }, meta: { title: '异常页', icon: 'warning', permission: [ 'exception' ] },
children: [ children: [
{ {
path: '/exception/403', path: '/exception/403',
name: 'Exception403', name: 'Exception403',
component: () => import(/* webpackChunkName: "fail" */ '../views/exception/403'), component: () => import(/* webpackChunkName: "fail" */ '../views/exception/403'),
meta: { title: '403' } meta: { title: '403', permission: [ 'exception' ] }
}, },
{ {
path: '/exception/404', path: '/exception/404',
...@@ -239,7 +239,7 @@ export const asyncRouterMap = [ ...@@ -239,7 +239,7 @@ export const asyncRouterMap = [
// this generates a separate chunk (about.[hash].js) for this route // this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited. // which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404'), component: () => import(/* webpackChunkName: "fail" */ '../views/exception/404'),
meta: { title: '404' } meta: { title: '404', permission: [ 'exception' ] }
}, },
{ {
path: '/exception/500', path: '/exception/500',
...@@ -248,7 +248,7 @@ export const asyncRouterMap = [ ...@@ -248,7 +248,7 @@ export const asyncRouterMap = [
// this generates a separate chunk (about.[hash].js) for this route // this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited. // which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "fail" */ '../views/exception/500'), component: () => import(/* webpackChunkName: "fail" */ '../views/exception/500'),
meta: { title: '500' } meta: { title: '500', permission: [ 'exception' ] }
} }
] ]
}, },
...@@ -256,19 +256,19 @@ export const asyncRouterMap = [ ...@@ -256,19 +256,19 @@ export const asyncRouterMap = [
path: '/account', path: '/account',
component: Layout, component: Layout,
name: 'account', name: 'account',
meta: { title: '个人页', icon: 'user', keepAlive: true }, meta: { title: '个人页', icon: 'user', keepAlive: true, permission: [ 'user' ] },
children: [ children: [
{ {
path: '/account/center', path: '/account/center',
name: 'center', name: 'center',
component: () => import('@/views/account/center/Index'), component: () => import('@/views/account/center/Index'),
meta: { title: '个人中心', keepAlive: true } meta: { title: '个人中心', keepAlive: true, permission: [ 'user' ] }
}, },
{ {
path: '/account/settings', path: '/account/settings',
name: 'settings', name: 'settings',
component: () => import('@/views/account/settings/Index'), component: () => import('@/views/account/settings/Index'),
meta: { title: '个人设置', hideHeader: true, keepAlive: true }, meta: { title: '个人设置', hideHeader: true, keepAlive: true, permission: [ 'user' ] },
redirect: '/account/settings/base', redirect: '/account/settings/base',
alwaysShow: true, alwaysShow: true,
children: [ children: [
...@@ -276,31 +276,31 @@ export const asyncRouterMap = [ ...@@ -276,31 +276,31 @@ export const asyncRouterMap = [
path: '/account/settings/base', path: '/account/settings/base',
name: 'BaseSettings', name: 'BaseSettings',
component: () => import('@/views/account/settings/BaseSetting'), component: () => import('@/views/account/settings/BaseSetting'),
meta: { title: '基本设置', hidden: true, keepAlive: true } meta: { title: '基本设置', hidden: true, keepAlive: true, permission: [ 'user' ] }
}, },
{ {
path: '/account/settings/security', path: '/account/settings/security',
name: 'SecuritySettings', name: 'SecuritySettings',
component: () => import('@/views/account/settings/Security'), component: () => import('@/views/account/settings/Security'),
meta: { title: '安全设置', hidden: true, keepAlive: true } meta: { title: '安全设置', hidden: true, keepAlive: true, permission: [ 'user' ] }
}, },
{ {
path: '/account/settings/custom', path: '/account/settings/custom',
name: 'CustomSettings', name: 'CustomSettings',
component: () => import('@/views/account/settings/Custom'), component: () => import('@/views/account/settings/Custom'),
meta: { title: '个性化设置', hidden: true, keepAlive: true } meta: { title: '个性化设置', hidden: true, keepAlive: true, permission: [ 'user' ] }
}, },
{ {
path: '/account/settings/binding', path: '/account/settings/binding',
name: 'BindingSettings', name: 'BindingSettings',
component: () => import('@/views/account/settings/Binding'), component: () => import('@/views/account/settings/Binding'),
meta: { title: '账户绑定', hidden: true, keepAlive: true } meta: { title: '账户绑定', hidden: true, keepAlive: true, permission: [ 'user' ] }
}, },
{ {
path: '/account/settings/notification', path: '/account/settings/notification',
name: 'NotificationSettings', name: 'NotificationSettings',
component: () => import('@/views/account/settings/Notification'), component: () => import('@/views/account/settings/Notification'),
meta: { title: '新消息通知', hidden: true, keepAlive: true } meta: { title: '新消息通知', hidden: true, keepAlive: true, permission: [ 'user' ] }
}, },
] ]
}, },
......
...@@ -17,7 +17,7 @@ function hasPermission(permission, route) { ...@@ -17,7 +17,7 @@ function hasPermission(permission, route) {
} }
} }
} }
return true return false
} }
/** /**
......
...@@ -52,9 +52,9 @@ const user = { ...@@ -52,9 +52,9 @@ const user = {
getInfo().then(response => { getInfo().then(response => {
const result = response.result const result = response.result
if (result.role && result.permissions.length > 0) { if (result.role && result.role.permissions.length > 0) {
const role = result.role const role = result.role
role.permissions = result.permissions role.permissions = result.role.permissions
role.permissions.map(per => { role.permissions.map(per => {
if (per.actionEntitySet != null && per.actionEntitySet.length > 0) { if (per.actionEntitySet != null && per.actionEntitySet.length > 0) {
let action = per.actionEntitySet.map(action => { return action.action }) let action = per.actionEntitySet.map(action => { return action.action })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment