@namespace wispro.sp.web
@inherits LayoutComponentBase
@using Microsoft.AspNetCore.Components.Authorization
@Body
@code
{
RenderFragment sub1Title =
@
我的配置
;
private readonly MenuDataItem[] _menuData =
{
new MenuDataItem
{
Path = "/Home",
Name = "首页",
Key = "index",
Icon = "home",
},
new MenuDataItem
{
Path = "/StartPerformanceCalculation",
Name = "开启绩效计算",
Key = "startCal",
Icon = "play-circle",
},
//new MenuDataItem
//{
// Path = "/PerformanceList",
// Name = "我的绩效",
// Key = "PerformanceList",
// Icon = "ordered-list",
//},
new MenuDataItem
{
Name="申请案处理界面",
Key="appManager",
Icon ="setting",
Children= new MenuDataItem[]
{
new MenuDataItem
{
Path="/MyCaseList",
Name = "案件确认",
Key = "app_confirm"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/1",
Name = "案件系数申诉审核",
Key = "app_xishu_confirm"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/2",
Name = "处理事项系数申诉审核",
Key = "app_doItemxishu_confirm"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/3",
Name = "处理人错误申诉审核",
Key = "app_doperson_confirm"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/4",
Name = "审核人错误申诉审核",
Key = "app_doperson_confirm4"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/5",
Name = "验证超期说明审核",
Key = "app_doperson_confirm5"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/6",
Name = "案件分配比例申诉审核",
Key = "app_doperson_confirm6"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/7",
Name = "案件缺漏提报审核",
Key = "app_doperson_confirm7"
},
new MenuDataItem
{
Path="/AppCase/ShensuReview/8",
Name = "涉外新申请算法确认",
Key = "app_doperson_confirm8"
}
}
},
new MenuDataItem
{
Name = "专案处理界面",
Key = "staffManager",
Icon = "setting",
Children= new MenuDataItem[]
{
new MenuDataItem
{
Path ="/Project/ReadMessage",
Name ="专案点数分配系统通知",
Key= "project_readMsg",
Icon = ""
},
new MenuDataItem
{
Path ="/Project/AssignPoint/1",
Name ="分配专案点数",
Key= "project_assignpoint",
Icon = ""
},
new MenuDataItem
{
Path ="/Project/ReadAssignPointMsg",
Name ="专案点数分配通知阅读",
Key= "ReadAssignPointMsg",
Icon = ""
},
new MenuDataItem
{
Path ="/Project/ConfirmProjectPoint",
Name ="代理人确认",
Key= "project_point_confirm",
Icon = ""
}
}
},
new MenuDataItem
{
Name = "基本资料管理",
Key = "baseResource",
Icon = "setting",
Children= new MenuDataItem[]
{
new MenuDataItem
{
Path ="/StaffList",
Name ="账号管理",
Key= "staff",
Icon = ""
},
new MenuDataItem
{
Path ="/StaffGrade",
Name ="代理人系数设定",
Key= "sg",
Icon = ""
},
new MenuDataItem
{
Path ="/VerifyCeofficient",
Name ="核稿系数设定",
Key="vc",
Icon = ""
}
,
new MenuDataItem
{
Path ="/VerifyCeofficient",
Name ="案件难度系数设定",
Key="vc",
Icon = ""
},
new MenuDataItem
{
Path ="/CustomerList",
Name ="客户信息管理",
Key="customer",
Icon = ""
}
}
}
};
public LinkItem[] Links { get; set; } =
{
new LinkItem
{
Key = "威世博官网",
Title = "深圳威世博",
Href = "https://www.weishibo.cn/",
BlankTarget = true,
},
new LinkItem
{
Key = "patentics",
Title = "Patentics数据库",
Href = "https://www.patentics.com/",
BlankTarget = true,
},
new LinkItem
{
Key = "合享数据库",
Title = "合享数据库",
Href = "https://www.incopat.com/intelLib/node/initIntelligentLib",
BlankTarget = true,
},
new LinkItem
{
Key = "zhihuiya",
Title = "智慧芽数据库",
Href = "https://account.zhihuiya.com/",
BlankTarget = true,
}
};
}