This commit is contained in:
mmrbnjd
2024-10-13 22:37:05 +03:30
parent 9054eefd47
commit a5c191f9ea
4 changed files with 43 additions and 35 deletions

View File

@@ -380,29 +380,19 @@
<div class="row">
@if (fv.dashBoard == null)
{
<div class="col-auto" >
<Spinner Visible="fv.dashBoard == null" Color="SpinnerColor.Primary" />
<p>در حال بارگذاری...</p>
</div> <div class="col-auto">
<p>در حال بارگذاری...</p>
</div>
}
@if (fv.dashBoard != null)
else
{
<!-- Order Statistics -->
<LastActivityServices dashBoard="fv.dashBoard" />
<!--/ Order Statistics -->
}
<!-- MostInvoicedCustomer -->
@if (fv.dashBoard != null)
{
<MostInvoicedCustomer model="fv.dashBoard?.MostInvoicedCustomer" />
}
<!--/ MostInvoicedCustomer -->
<!-- MostInvoicedProduct -->
@if (fv.dashBoard != null)
{
<MostInvoicedProduct model="fv.dashBoard?.MostInvoicedProduct" />
}
<!--/ MostInvoicedProduct -->
</div>