26 lines
589 B
Plaintext
26 lines
589 B
Plaintext
@page "/ProjectsStatus"
|
|
|
|
<PageTitle>Projects Status</PageTitle>
|
|
|
|
@if (isLoading)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else if (CustomerID == 0)
|
|
{
|
|
<CmpCustomerUndef></CmpCustomerUndef>
|
|
}
|
|
else
|
|
{
|
|
<div class="row">
|
|
<div class="@mainCss">
|
|
<ProjectMan CustomerId="@CustomerID" KeyNum="@nKey" E_MaterialSel="SaveMat"></ProjectMan>
|
|
</div>
|
|
@if (MaterialSel != null)
|
|
{
|
|
<div class="col-6">
|
|
<ItemMan CustomerId="@CustomerID" KeyNum="@nKey" MaterialSel="@MaterialSel"></ItemMan>
|
|
</div>
|
|
}
|
|
</div>
|
|
} |