feat: implement pos goods management module; add create, update, and list components with API integration
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<div class="bg-surface-card">
|
||||
<app-inner-pages-header [pageTitle]="preparedPageTitle()" [backRoute]="backRoute" />
|
||||
<hr class="mt-0!" />
|
||||
<div class="flex w-full flex-col flex-wrap gap-3 p-4">
|
||||
@if (loading()) {
|
||||
} @else if (item()) {
|
||||
<shared-good-form
|
||||
[guildId]="guildId()"
|
||||
[initialValues]="item()!"
|
||||
[updateFn]="updateFn"
|
||||
[editMode]="true"
|
||||
(onSubmit)="onSubmit()"
|
||||
(onClose)="onPrev()" />
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user