整体调整了功能
This commit is contained in:
@@ -30,13 +30,13 @@ namespace FATrace.WPLApp.Services
|
||||
IsParent = true,
|
||||
ChildrenNavItemDtos = new ObservableCollection<NavItemDto>()
|
||||
{
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "报表数据",
|
||||
CmdPar = "报表数据",
|
||||
Icon = "\uec55",
|
||||
IsParent = false,
|
||||
},
|
||||
//new NavItemDto()
|
||||
//{
|
||||
// Name = "报表数据",
|
||||
// CmdPar = "报表数据",
|
||||
// Icon = "\uec55",
|
||||
// IsParent = false,
|
||||
//},
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "原料使用查询",
|
||||
@@ -52,6 +52,13 @@ namespace FATrace.WPLApp.Services
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "文件导入日志",
|
||||
CmdPar = "文件导入日志",
|
||||
Icon = "\ue792",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "历史报警",
|
||||
CmdPar = "历史报警",
|
||||
@@ -87,6 +94,13 @@ namespace FATrace.WPLApp.Services
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "用户管理",
|
||||
CmdPar = "用户管理",
|
||||
Icon = "\uec46",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "使用手册",
|
||||
CmdPar = "使用手册",
|
||||
@@ -95,6 +109,104 @@ namespace FATrace.WPLApp.Services
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// 工厂/OEM 数据查询(单独的菜单目录节点)
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "工厂/OEM 数据查询",
|
||||
CmdPar = string.Empty,
|
||||
Icon = "\ue650",
|
||||
IsParent = true,
|
||||
ChildrenNavItemDtos = new ObservableCollection<NavItemDto>()
|
||||
{
|
||||
// 工厂节点
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "工厂",
|
||||
CmdPar = string.Empty,
|
||||
Icon = "\ue962",
|
||||
IsParent = true,
|
||||
ChildrenNavItemDtos = new ObservableCollection<NavItemDto>()
|
||||
{
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "工厂-入库",
|
||||
CmdPar = "工厂-入库",
|
||||
Icon = "\uea25",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "工厂-领料",
|
||||
CmdPar = "工厂-领料",
|
||||
Icon = "\uea25",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "工厂-出入库",
|
||||
CmdPar = "工厂-出入库",
|
||||
Icon = "\uea25",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "工厂-原料生产信息",
|
||||
CmdPar = "工厂-原料生产信息",
|
||||
Icon = "\uea25",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "工厂-成品出库",
|
||||
CmdPar = "工厂-成品出库",
|
||||
Icon = "\uea25",
|
||||
IsParent = false,
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// OEM 节点
|
||||
new NavItemDto()
|
||||
{
|
||||
Name = "OEM",
|
||||
CmdPar = string.Empty,
|
||||
Icon = "\ued08",
|
||||
IsParent = true,
|
||||
ChildrenNavItemDtos = new ObservableCollection<NavItemDto>()
|
||||
{
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "OEM-入库",
|
||||
CmdPar = "OEM-入库",
|
||||
Icon = "\ueab4",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "OEM-出库",
|
||||
CmdPar = "OEM-出库",
|
||||
Icon = "\ueab4",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "OEM-出入库",
|
||||
CmdPar = "OEM-出入库",
|
||||
Icon = "\ueab4",
|
||||
IsParent = false,
|
||||
},
|
||||
new NavItemDto
|
||||
{
|
||||
Name = "OEM-原料使用信息",
|
||||
CmdPar = "OEM-原料使用信息",
|
||||
Icon = "\ueab4",
|
||||
IsParent = false,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
//// 生产管理导航项(父级) - 新增测试导航
|
||||
//new NavItemDto()
|
||||
|
||||
Reference in New Issue
Block a user