Files
magman/MagMan.UI/Pages/MachineStatus.razor
2024-04-30 10:51:43 +02:00

31 lines
780 B
Plaintext

@page "/MachineStatus"
<PageTitle>Machine Status</PageTitle>
@if (isLoading)
{
<LoadingData></LoadingData>
}
else if (CustomerID == 0)
{
<CmpCustomerUndef></CmpCustomerUndef>
}
else
{
<div class="row">
<div class="@mainCss">
<MacStatusMan CustomerId="@CustomerID" KeyNum="@nKey"></MacStatusMan>
@* <ProjectMan CustomerId="@CustomerID" KeyNum="@nKey" E_ProjSel="SaveProj"></ProjectMan> *@
</div>
@* @if (ProjSel != null)
{
<div class="col-6">
<ResourcesAct KeyNum="@nKey" ProjDbId="@ProjSel.ProjDbId"></ResourcesAct>
<br />
<ResourcesEstim KeyNum="@nKey" ProjDbId="@ProjSel.ProjDbId"></ResourcesEstim>
</div>
} *@
</div>
}