58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
@page "/"
|
|
|
|
@using MP.Stats.Components
|
|
@using MP.Stats.Data
|
|
|
|
@inject MessageService MessageService
|
|
|
|
|
|
<div class="mt-4 p-4 bg-secondary bg-gradient bg-opacity-25 border border-light text-dark rounded shadow">
|
|
<div class="d-flex justify-content-between">
|
|
<div class="px-2">
|
|
<h1>MP STATS</h1>
|
|
<div>
|
|
Modulo Statistiche per MoonPro
|
|
</div>
|
|
</div>
|
|
<div class="px-2">
|
|
<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="card mt-2 shadow my-lg-5">
|
|
<div class="card-body">
|
|
<div class="d-flex justify-content-around mb-1">
|
|
<div class="p-4 fs-1">
|
|
<h1>
|
|
<img class="img-fluid" src="images/LogoEgw.png" width="48" /> <b>Egalware</b>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
<div class="shortcuts my-4">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<HomeButton NavLink="oee" Icon="oi oi-monitor" Descript="TRS/OEE %" />
|
|
<HomeButton NavLink="Energy" Icon="oi oi-bar-chart" Descript="ENERGY" />
|
|
<HomeButton NavLink="trend-analysis" Icon="fa-solid fa-arrow-trend-up" Descript="TREND" />
|
|
<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>
|
|
</div>
|
|
</div>
|
|
|
|
@code {
|
|
protected override Task OnInitializedAsync()
|
|
{
|
|
MessageService.ShowSearch = false;
|
|
MessageService.PageName = "Home";
|
|
MessageService.PageIcon = "fa fa-home";
|
|
return base.OnInitializedAsync();
|
|
}
|
|
} |