更新项目配置,新增设备同步模块,优化WebSocket和Swagger配置,增强SCADA系统的免登录接口,支持数据字典项和登录日志的免登录查询与记录。调整Java编译设置,确保更好的开发体验。
This commit is contained in:
29
yy-admin-master/YY.Admin/Module/NavItem.cs
Normal file
29
yy-admin-master/YY.Admin/Module/NavItem.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using YY.Admin.Core;
|
||||
|
||||
namespace YY.Admin.Module
|
||||
{
|
||||
/// <summary>
|
||||
/// SideBar选项
|
||||
/// </summary>
|
||||
public class NavItem : TabSource
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否放到底部
|
||||
/// </summary>
|
||||
public bool AlignBottom { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 是否支持高亮选中
|
||||
/// </summary>
|
||||
public bool IsActive { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 图标类型
|
||||
/// </summary>
|
||||
public override IconTypeEnum IconType { get => base.IconType; set => base.IconType = value; }
|
||||
public NavItem()
|
||||
{
|
||||
IconType = IconTypeEnum.MaterialDesign;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user