@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 { Name="我的绩效", Key="appManager", Icon ="copy", Path="/MyCaselist", }, new MenuDataItem { Name = "基本资料管理", Key = "baseResource", Icon = "setting", Children= new MenuDataItem[] { new MenuDataItem { Path ="/StaffList", Name ="账号管理", Key= "staff", Icon = "" }, new MenuDataItem { Path ="/Department", Name ="部门管理", Key= "dept", Icon = "" }, new MenuDataItem { Path ="/StaffGrade", Name ="代理人系数设定", Key= "sg", Icon = "" }, new MenuDataItem { Path ="/CustomerList", Name ="客户信息管理", Key="customer", Icon = "" } } }, new MenuDataItem { Path ="/Workflow/Manage", Name ="流程管理", Key= "wfManage", Icon = "apartment" } }; 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, } }; }