f671e37b14
- Implemented bank accounts management with form and list components. - Added bank branches management with form and list components. - Created services for bank accounts and branches to handle API interactions. - Updated routing to include bank accounts and branches. - Enhanced UI with new select fields for banks and branches. - Added necessary models and constants for bank accounts and branches. - Improved state management for banks using a store pattern. - Updated menu items to include links for bank accounts and branches.
15 lines
513 B
HTML
15 lines
513 B
HTML
<app-page-data-list
|
|
[pageTitle]="'مدیریت شعب بانک'"
|
|
[addNewCtaLabel]="'افزودن شعبهی جدید'"
|
|
[columns]="columns"
|
|
[showAdd]="true"
|
|
emptyPlaceholderTitle="شعبهای یافت نشد"
|
|
emptyPlaceholderDescription="برای افزودن شعبه جدید، روی دکمهٔ بالا کلیک کنید."
|
|
[items]="items()"
|
|
[loading]="loading()"
|
|
[showDetails]="true"
|
|
(onAdd)="openAddForm()"
|
|
/>
|
|
|
|
<bank-account-form [(visible)]="visibleForm" (onSubmit)="refresh()" />
|