index.vue 458 B

12345678910111213141516171819202122
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-11-26 09:25:16
  4. * @LastEditTime: 2022-01-07 11:47:25
  5. * @LastEditors: Please set LastEditors
  6. * @Description: 权限管理
  7. * @FilePath: \Foshan4A2.0\src\views\authorityManagement\index.vue
  8. -->
  9. <template>
  10. <div class="organization">
  11. <router-view />
  12. </div>
  13. </template>
  14. <style lang="scss" scoped>
  15. .organization {
  16. min-height: calc(100vh - 145px);
  17. > div {
  18. min-height: calc(100vh - 145px);
  19. }
  20. }
  21. </style>