Commit a31fd573 by maxiaohan

新增系统管理

parent 4b6031ce
......@@ -180,6 +180,60 @@ export default [
component: () => import("@/views/AllPersonnelBase/qbalk.vue")
}
]
},
{
path: "/SystemManage",
name: "SystemManage",
icon_d: "/img/manage_d.png",
icon_a: "/img/manage_a.png",
hidden: false,
meta: {
title: "系统管理",
auth: "5"
},
component: () => import("@/views/SystemManage/Index.vue"),
children: [
{
path: "/",
name: "UserManage",
hidden: false,
meta: {
title: "用户管理",
auth: "5"
},
component: () => import("@/views/SystemManage/UserManage.vue")
},
{
path: "GroupManage",
name: "GroupManage",
hidden: false,
meta: {
title: "用户组管理",
auth: "5"
},
component: () => import("@/views/SystemManage/GroupManage.vue")
},
{
path: "RoleManage",
name: "RoleManage",
hidden: false,
meta: {
title: "角色管理",
auth: "5"
},
component: () => import("@/views/SystemManage/RoleManage.vue")
},
{
path: "AuthManage",
name: "AuthManage",
hidden: false,
meta: {
title: "权限管理",
auth: "5"
},
component: () => import("@/views/SystemManage/AuthManage.vue")
}
]
}
]
},
......
<template>
<div>权限管理</div>
</template>
<script>
export default {
name: "AuthManage"
};
</script>
<style scoped></style>
<template><div>用户组管理</div></template>
<script>
export default {
name: "GroupManage"
};
</script>
<style scoped></style>
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "Index.vue"
};
</script>
<style scoped></style>
<template>
<div>角色管理</div>
</template>
<script>
export default {
name: "RoleManage"
};
</script>
<style scoped></style>
<template> <div>用户管理</div></template>
<script>
export default {
name: "UserManage"
};
</script>
<style scoped></style>
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