Conflicts:
	ruoyi-ui/src/views/system/role/index.vue
This commit is contained in:
疯狂的狮子li 2021-02-03 13:38:43 +08:00
commit 6f0dfa850a
1 changed files with 7 additions and 2 deletions

View File

@ -513,7 +513,12 @@ export default {
this.open = true; this.open = true;
this.$nextTick(() => { this.$nextTick(() => {
roleMenu.then(res => { 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 = "修改角色"; this.title = "修改角色";