Explorar el Código

修复角色管理-编辑角色-功能权限显示异常

RuoYi hace 3 años
padre
commit
baeed2e8d3
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      ruoyi-ui/src/views/system/role/index.vue

+ 6 - 1
ruoyi-ui/src/views/system/role/index.vue

@@ -513,7 +513,12 @@ export default {
         this.open = true;
         this.$nextTick(() => {
           roleMenu.then(res => {
-            this.$refs.menu.setCheckedKeys(res.checkedKeys);
+            let checkedKeys = res.checkedKeys
+            checkedKeys.forEach((v) => {
+                this.$nextTick(()=>{
+                    this.$refs.menu.setChecked(v, true ,false);
+                })
+            })
           });
         });
         this.title = "修改角色";