22 lines
783 B
Plaintext
22 lines
783 B
Plaintext
@page "/Items"
|
|
@inherits BaseComp
|
|
|
|
<div class="p-2 shadow">
|
|
<div class="d-flex align-items-center justify-content-between">
|
|
<DataFilter CurrFilt="@CurrFilt" ShowItemsBuy="true" ListItemGroup="ListItemGroup" EC_Updated="UpdateFilt" EC_AddRew="DoAdd"></DataFilter>
|
|
</div>
|
|
<div class="flex-grow-1 overflow-auto my-2 py-1 ">
|
|
@if (isLoading)
|
|
{
|
|
<LoadingData></LoadingData>
|
|
}
|
|
else
|
|
{
|
|
if (editRecItem != null)
|
|
{
|
|
<ItemEdit CurrRecord="editRecItem" ListItemGroup="ListItemGroup" EC_Updated="DoSaveItem" EC_Close="DoCancel"></ItemEdit>
|
|
}
|
|
<ItemMan SelFilt="CurrFilt" ListItemGroup="ListItemGroup" EC_EditReq="EditItem"></ItemMan>
|
|
}
|
|
</div>
|
|
</div> |