Browse Source

update 角色管理分配权限

qianlishi 3 years ago
parent
commit
9c3ec6c1b6
1 changed files with 7 additions and 0 deletions
  1. 7 0
      report-ui/src/views/accessRole/components/RoleAuthority.vue

+ 7 - 0
report-ui/src/views/accessRole/components/RoleAuthority.vue

@@ -15,6 +15,7 @@
       node-key="id"
       node-key="id"
       default-expand-all
       default-expand-all
       :default-checked-keys="checkedKeys"
       :default-checked-keys="checkedKeys"
+      class="el-tree"
     />
     />
     <div slot="footer" style="text-align: center">
     <div slot="footer" style="text-align: center">
       <el-button type="primary" plain @click="saveTreeData">保存</el-button>
       <el-button type="primary" plain @click="saveTreeData">保存</el-button>
@@ -83,3 +84,9 @@ export default {
   }
   }
 };
 };
 </script>
 </script>
+<style lang="scss" scoped>
+/deep/.el-dialog__body {
+  height: 400px;
+  overflow-y: scroll;
+}
+</style>