BasicLayout.razor 1.48 KB
@namespace AutomaticGrooveCalculationTool
@inherits LayoutComponentBase

<AntDesign.ProLayout.BasicLayout 
    Logo="@("https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg")"
    MenuData="_menuData">
    <RightContentRender>
    </RightContentRender>
    <ChildContent>
        @Body
    </ChildContent>
    <FooterRender>
        <FooterView Copyright="2023" Links="Links"></FooterView>
    </FooterRender>
</AntDesign.ProLayout.BasicLayout>
<SettingDrawer />

@code
{
    private readonly MenuDataItem[] _menuData =
    {
        new MenuDataItem
        {
            Path = "/",
            Name = "坡口计算",
            Key = "welcome",
            Icon = "smile",
        }
    };

    public LinkItem[] Links { get; set; } =
    {
        // new LinkItem
        // {
        //     Key = "Ant Design Blazor",
        //     Title = "Ant Design Blazor",
        //     Href = "https://antblazor.com",
        //     BlankTarget = true,
        // },
        // new LinkItem
        // {
        //     Key = "github",
        //     Title = (RenderFragment)(@<Icon Type="github" />),
        //     Href = "https://github.com/ant-design-blazor/ant-design-pro-blazor",
        //     BlankTarget = true,
        // },
        // new LinkItem
        // {
        //     Key = "Blazor",
        //     Title = "Blazor",
        //     Href = "https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor?WT.mc_id=DT-MVP-5003987",
        //     BlankTarget = true,
        // }
    };
}