12345678910111213141516171819202122 |
- <!--
- * @Author: your name
- * @Date: 2021-11-26 09:25:16
- * @LastEditTime: 2022-01-07 11:47:25
- * @LastEditors: Please set LastEditors
- * @Description: 权限管理
- * @FilePath: \Foshan4A2.0\src\views\authorityManagement\index.vue
- -->
- <template>
- <div class="organization">
- <router-view />
- </div>
- </template>
- <style lang="scss" scoped>
- .organization {
- min-height: calc(100vh - 145px);
- > div {
- min-height: calc(100vh - 145px);
- }
- }
- </style>
|