Files
mapo-core/MP.INVE/Pages/InveSession.razor
T
Samuele Locatelli 243c451bef Dettaglio lotti scansionati:
- aggiunta (preliminare) visualizzazione
2022-12-19 10:14:27 +01:00

44 lines
1.5 KiB
Plaintext

@page "/InveSession"
<div class="card">
<div class="card-header d-flex justify-content-between">
<div class="col-5">
<h3>Sessione</h3>
</div>
<div class="col-2 align-content-center">
<div class="input-group input-group-sm">
<div class="input-group-text">
<span class="me-1">In corso</span>
<div class="form-check form-check-sm form-switch py-1" title="Parameter View Mode (RealTime / LogData)">
<input class="form-check-input" type="checkbox" id="mySwitch" name="setupAlarms" @onclick="() => toggle()">
</div>
<span class="">Trasferite</span>
</div>
</div>
</div>
<div class="col-5 d-flex flex-row-reverse">
<button class="btn btn-success" @onclick="()=>openNew()">
<i class="fa-regular fa-square-plus"></i> &nbsp; NUOVO
</button>
</div>
</div>
<div class="card-body">
@if (isLoading)
{
<LoadingData></LoadingData>
}
else
{
<InveSessionList currParams="@currParams" isLoading="@isLoading" ></InveSessionList>
}
</div>
<div class="card-footer py-1">
<DataPager PageSize="numRecord" currPage="currPage" numRecordChanged="ForceReload" numPageChanged="ForceReloadPage" totalCount="totalCount" showLoading="@isLoading" />
</div>
</div>