You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
5 months ago
|
@namespace NewWMSProject.Layouts
|
||
|
@inherits LayoutComponentBase
|
||
|
|
||
|
<AntDesign.ProLayout.BasicLayout
|
||
|
Logo="@("https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg")"
|
||
|
MenuData="_menuData"
|
||
|
MenuAccordion
|
||
|
@bind-Collapsed="collapsed">
|
||
|
<HeaderContentRender>
|
||
|
<Space Size="@("24")">
|
||
|
<SpaceItem>
|
||
|
<Icon Class="action" Type="@(collapsed?"menu-unfold":"menu-fold")" OnClick="Toggle" />
|
||
|
</SpaceItem>
|
||
|
<SpaceItem>
|
||
|
<Icon Class="action" Type="reload" Theme="@IconThemeType.Outline" OnClick="Reload" />
|
||
|
</SpaceItem>
|
||
|
</Space>
|
||
|
</HeaderContentRender>
|
||
|
<RightContentRender>
|
||
|
<NewWMSProject.Components.RightContent />
|
||
|
</RightContentRender>
|
||
|
<ChildContent>
|
||
|
<ReuseTabs></ReuseTabs>
|
||
|
</ChildContent>
|
||
|
<FooterRender>
|
||
|
<FooterView Copyright="SIASUN WMS" Links="Links"></FooterView>
|
||
|
</FooterRender>
|
||
|
</AntDesign.ProLayout.BasicLayout>
|
||
|
|
||
|
<SettingDrawer />
|
||
|
|
||
|
@code{
|
||
|
bool collapsed;
|
||
|
|
||
|
public LinkItem[] Links =
|
||
|
{
|
||
|
new LinkItem
|
||
|
{
|
||
|
Key = "Blazor",
|
||
|
Title = "Blazor",
|
||
|
Href = "https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor?WT.mc_id=DT-MVP-5003987",
|
||
|
BlankTarget = true,
|
||
|
}
|
||
|
};
|
||
|
|
||
|
void Toggle()
|
||
|
{
|
||
|
collapsed = !collapsed;
|
||
|
}
|
||
|
|
||
|
}
|