1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="role">
- <page-header-wrapper
- :title="false"
- content="用于角色与页面的权限配置"
- :tab-list="tabList"
- :tab-active-key="tabActiveKey"
- @tabChange="handleTabChange"
- >
- <a-row :gutter="24">
- <a-col :md="24" :lg="5">
- <role-admin />
- </a-col>
- <a-col :md="24" :lg="19">
- <role-setting />
- </a-col>
- </a-row>
- </page-header-wrapper>
- </div>
- </template>
- <script>
- import RoleAdmin from './roleAdmin'
- import RoleSetting from './roleSetting'
- export default {
- name: 'Role',
- components: {
- RoleAdmin,
- RoleSetting
- }
- }
- </script>
- <style scoped lang="less">
- </style>
|