客户端代码修改提交

This commit is contained in:
2025-10-14 17:58:49 +08:00
parent c3284032cc
commit 7f599ba51d
27 changed files with 294 additions and 43 deletions

View File

@@ -51,7 +51,24 @@ namespace NBF
style.selectedIndex = 1; //有二级菜单
}
_tabList.AddRange(tabItemList);
if (showListTitle)
{
foreach (var tabItemData in _tabList)
{
tabItemData.TabItemDataAddListTitle();
if (tabItemData.Children.Count > 0)
{
foreach (var itemData in tabItemData.Children)
{
itemData.TabItemDataAddListTitle();
}
}
}
}
if (showAll)
{
_tabList.AddAllTabItem(showListTitle);