Files
psp_panel/src/app/domains/pos/layouts/layout.component.html
T

24 lines
979 B
HTML
Raw Normal View History

2026-03-18 13:35:57 +03:30
@if (loading()) {
<shared-page-loading />
} @else {
2026-03-29 18:07:10 +03:30
<div class="w-svw h-svh bg-surface-ground flex flex-col gap-4 p-4">
<div class="w-full flex items-center gap-4 shrink-0 justify-between">
<div class="flex gap-2 items-center">
<div class="w-10 h-10">
<img [src]="placeholderLogo" alt="Logo" class="w-full h-full object-cover rounded-md bg-surface-card" />
</div>
<span class="text-lg font-bold">{{ posInfo()?.name }} - فروشگاه {{ posInfo()?.complex?.name }}</span>
</div>
<div class="flex gap-2 items-center">
<div class="bg-surface-card py-1 px-3 rounded-md shadow-sm">
<span [jalaliDate]="now" jalaliFormat="dddd YYYY/MM/DD" class="text-base"></span>
</div>
<div class="bg-surface-card py-1 px-3 rounded-md shadow-sm">
<span class="text-base"> {{ userInfo()?.username }} </span>
</div>
</div>
</div>
<router-outlet></router-outlet>
</div>
2026-03-18 13:35:57 +03:30
}