15 lines
337 B
Plaintext
15 lines
337 B
Plaintext
@page "/notes"
|
|
@inherits BasePage
|
|
|
|
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
|
|
{
|
|
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<CheckControls RecMSE="CurrMSE"></CheckControls>
|
|
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
|
|
<NotesMan RecMSE="CurrMSE"></NotesMan>
|
|
}
|
|
|