44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
@page "/"
|
|
|
|
@using MP.Stats.Components
|
|
@using MP.Stats.Data
|
|
|
|
@inject MessageService MessageService
|
|
|
|
<div class="jumbotron">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-4">
|
|
<h1>MP STATS</h1>
|
|
<div>
|
|
Modulo Statistiche per MoonPro
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-8 text-right">
|
|
<div class="text-light display-4">
|
|
<span class="oi oi-book" aria-hidden="true"></span> | <span class="oi oi-document" aria-hidden="true"></span> | <span class="oi oi-beaker" aria-hidden="true"></span> | <span class="oi oi-warning" aria-hidden="true"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="shortcuts mt-2">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<HomeButton NavLink="oee" Icon="oi oi-monitor" Descript="TRS/OEE %" />
|
|
<HomeButton NavLink="reportodl" Icon="oi oi-book" Descript="Report ODL" />
|
|
<HomeButton NavLink="diario" Icon="oi oi-clipboard" Descript="Diario Produzione" />
|
|
<HomeButton NavLink="userlog" Icon="oi oi-document" Descript="User ActionLog" />
|
|
<HomeButton NavLink="controlli" Icon="oi oi-beaker" Descript="Controlli" />
|
|
<HomeButton NavLink="scarti" Icon="oi oi-warning" Descript="Scarti" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@code {
|
|
protected override Task OnInitializedAsync()
|
|
{
|
|
MessageService.ShowSearch = false;
|
|
MessageService.PageName = "Home";
|
|
MessageService.PageIcon = "oi oi-home";
|
|
return base.OnInitializedAsync();
|
|
}
|
|
} |