index.vue 732 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="role">
  3. <page-header-wrapper
  4. :title="false"
  5. content="用于角色与页面的权限配置"
  6. :tab-list="tabList"
  7. :tab-active-key="tabActiveKey"
  8. @tabChange="handleTabChange"
  9. >
  10. <a-row :gutter="24">
  11. <a-col :md="24" :lg="5">
  12. <role-admin />
  13. </a-col>
  14. <a-col :md="24" :lg="19">
  15. <role-setting />
  16. </a-col>
  17. </a-row>
  18. </page-header-wrapper>
  19. </div>
  20. </template>
  21. <script>
  22. import RoleAdmin from './roleAdmin'
  23. import RoleSetting from './roleSetting'
  24. export default {
  25. name: 'Role',
  26. components: {
  27. RoleAdmin,
  28. RoleSetting
  29. }
  30. }
  31. </script>
  32. <style scoped lang="less">
  33. </style>