Files
mapo-core/MP-TAB-SERV/Pages/TechSheet.razor
T
2023-10-03 09:09:51 +02:00

16 lines
289 B
Plaintext

@page "/tech-sheet"
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
{
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
}
else
{
<div>
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
</div>
<TechSheetDetail></TechSheetDetail>
}