15 lines
244 B
Plaintext
15 lines
244 B
Plaintext
@page "/machine-detail"
|
|
|
|
@using MP.Data.Services;
|
|
@inject MessageService MsgServ
|
|
|
|
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null)
|
|
{
|
|
<b>loading...</b>
|
|
}
|
|
else
|
|
{
|
|
<MachineBlock RecMSE="CurrMSE" FullMode="false"></MachineBlock>
|
|
}
|
|
|