22 lines
736 B
HTML
22 lines
736 B
HTML
|
|
<div class="flex flex-col gap-6">
|
||
|
|
<app-card-data cardTitle="اطلاعات فعالیت اقتصادی" [editable]="true" [(editMode)]="editMode">
|
||
|
|
<ng-template #moreAction> </ng-template>
|
||
|
|
<div class="flex flex-col gap-4">
|
||
|
|
<div class="grid grid-cols-3 gap-4 items-center">
|
||
|
|
<app-key-value label="عنوان" [value]="business()?.name" />
|
||
|
|
<app-key-value label="صنف" [value]="business()?.guild?.name" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</app-card-data>
|
||
|
|
|
||
|
|
<consumer-complex-list [businessId]="businessId()" />
|
||
|
|
|
||
|
|
<consumer-businessActivity-form
|
||
|
|
[(visible)]="editMode"
|
||
|
|
[editMode]="true"
|
||
|
|
[businessId]="businessId()"
|
||
|
|
[initialValues]="business() || undefined"
|
||
|
|
(onSubmit)="getData()"
|
||
|
|
/>
|
||
|
|
</div>
|