Iniziata implementazione form rilevazione
This commit is contained in:
51
SteUp.Shared/Components/Pages/Ispezione.razor
Normal file
51
SteUp.Shared/Components/Pages/Ispezione.razor
Normal file
@@ -0,0 +1,51 @@
|
||||
@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()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user