Przeglądaj źródła

fix: 修复首次打开应用编辑对话框未选中已授权菜单问题

喵你个旺呀 1 rok temu
rodzic
commit
8dca928954
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Web/src/views/system/app/component/editApp.vue

+ 1 - 1
Web/src/views/system/app/component/editApp.vue

@@ -130,7 +130,7 @@ const openDialog = async (row: any) => {
 	state.ruleForm = JSON.parse(JSON.stringify(row));
 	if (row.id && auth('sysApp:grantMenu')) {
     const res = await getAPI(SysAppApi).apiSysAppGrantMenuGet(row.id);
-    treeRef.value?.setCheckedKeys(res.data.result ?? []);
+    setTimeout(() => treeRef.value?.setCheckedKeys(res.data.result ?? []), 100);
 	}
 	state.isShowDialog = true;
 };