修复路由切换问题

This commit is contained in:
陈淳
2022-10-29 10:33:08 +08:00
parent c901b4bc06
commit d6fd02ec19
9 changed files with 854 additions and 278 deletions

View File

@@ -13,7 +13,7 @@ namespace Yi.Framework.Model.Models
public partial class MenuEntity
{
[SqlSugar.SugarColumn(IsIgnore = true)]
public List<MenuEntity> Children { get; set; }
public List<MenuEntity>? Children { get; set; }
public static List<VueRouterModel> RouterBuild(List<MenuEntity> menus)