51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
@page "/ispezione"
|
|
@using SteUp.Shared.Components.Layout
|
|
|
|
<HeaderLayout Title="Ispezione" BackTo="Indietro" Back="true"/>
|
|
|
|
<div class="container content pb-safe-area">
|
|
|
|
<div class="container-primary-info">
|
|
<div class="section-primary-info">
|
|
<div class="inspection-info">
|
|
<span class="info-title">
|
|
@SteupDataService.Inspection.PuntoVendita!.CodMdep - @SteupDataService.Inspection.PuntoVendita.Descrizione
|
|
</span>
|
|
<span class="info-subtitle">
|
|
@SteupDataService.Inspection.PuntoVendita.Indirizzo
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="section-info">
|
|
<div class="section-inspection-info">
|
|
<div>
|
|
<span class="info-inspection-title">Data ispezione</span>
|
|
<MudChip T="string" Size="Size.Small" Color="Color.Default">
|
|
@SteupDataService.Inspection.DateInspection.ToString("d")
|
|
</MudChip>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section-inspection-info">
|
|
<div>
|
|
<span class="info-inspection-title">Stato ispezione</span>
|
|
<MudChip T="string" Size="Size.Small" Color="Color.Warning">
|
|
IN CORSO
|
|
</MudChip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@code {
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
}
|
|
|
|
} |