Browse Source
Merge pull request #565 from colinin/5.2.0
feat: 使用户定义菜单排序有效
pull/580/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
aspnet-core/modules/platform/LINGYUN.Abp.UI.Navigation.VueVbenAdmin/LINGYUN/Abp/UI/Navigation/VueVbenAdmin/VueVbenAdminNavigationSeedContributor.cs
|
|
|
@ -80,6 +80,7 @@ namespace LINGYUN.Abp.UI.Navigation.VueVbenAdmin |
|
|
|
{ |
|
|
|
{ "title", menu.DisplayName }, |
|
|
|
{ "icon", menu.Icon ?? "" }, |
|
|
|
{ "orderNo", menu.Order }, |
|
|
|
{ "hideTab", false }, |
|
|
|
{ "ignoreAuth", false }, |
|
|
|
}; |
|
|
|
@ -133,6 +134,7 @@ namespace LINGYUN.Abp.UI.Navigation.VueVbenAdmin |
|
|
|
{ |
|
|
|
{ "title", item.DisplayName }, |
|
|
|
{ "icon", item.Icon ?? "" }, |
|
|
|
{ "orderNo", item.Order }, |
|
|
|
{ "hideTab", false }, |
|
|
|
{ "ignoreAuth", false }, |
|
|
|
}; |
|
|
|
|