Ver código fonte

fix: 修复没删除应用子集菜单数据问题

喵你个旺呀 1 ano atrás
pai
commit
be2634806a

+ 1 - 1
Admin.NET/Admin.NET.Core/Service/Menu/SysMenuService.cs

@@ -208,7 +208,7 @@ public class SysMenuService : IDynamicApiController, ITransient
         await _sysUserMenuService.DeleteMenuList(menuIdList);
         
         // 删除应用菜单关联
-        await _sysAppMenuRep.AsDeleteable().Where(u => u.MenuId == input.Id).ExecuteCommandAsync();
+        await _sysAppMenuRep.AsDeleteable().Where(u => menuIdList.Contains(u.MenuId)).ExecuteCommandAsync();
 
         // 清除缓存
         DeleteMenuCache();