evaluation-cycle-manager.component.html 2.69 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<app-page-header [pathTitle]="pathTitle"></app-page-header>
<div class="bg-card-white">
</div>
<div class="block-main-content">
    <div class="font-size-18px font-weight-700 pt-1.5rem text-primary px-2rem">
        การจัดการรอบการประเมิน
    </div>
    <div class="page pt-0.75rem">
        <div class="border-b border-gray-200 dark:border-white/10 px-2rem">
            <nav class="-mb-0.5 flex space-x-6 rtl:space-x-reverse">
                <a class="font-size-16px font-weight-500  hs-tab-active:font-weight-700 hs-tab-active:border-secondary  hs-tab-active:text-secondary pb-3 inline-flex items-center gap-2 border-b-[3px] border-transparent whitespace-nowrap text-gray-500  hover:text-secondary active"
                    href="javascript:void(0);" id="underline-item-1" data-hs-tab="#underline-1"
                    aria-controls="underline-1"
14
                    (click)="activeTab='underline-1';pathTitle = ['การประเมินสมรรถนะ', 'การจัดการรอบการประเมิน', 'รอบการประเมิน']">
15 16
                    รอบการประเมิน
                </a>
Ooh-Ao committed
17
                <!-- <a class="font-size-16px font-weight-500  hs-tab-active:font-weight-700 hs-tab-active:border-secondary  hs-tab-active:text-secondary pb-3 px-1 inline-flex items-center gap-2 border-b-[3px] border-transparent whitespace-nowrap text-gray-500  hover:text-secondary"
18 19
                    href="javascript:void(0);" id="underline-item-2" data-hs-tab="#underline-2"
                    aria-controls="underline-2"
20
                    (click)="activeTab='underline-2';pathTitle = ['การประเมินสมรรถนะ', 'การจัดการรอบการประเมิน', 'กำหนดฟอร์มเอกสาร']">
21
                    กำหนดฟอร์มเอกสาร
Ooh-Ao committed
22
                </a> -->
23 24
            </nav>
        </div>
25
        <div class="px-2rem" [ngClass]="{'pt-50px': groupShow !== '2'}">
26 27 28
            <div id="underline-1" role="tabpanel" aria-labelledby="underline-item-1">
                <app-evaluation-cycle></app-evaluation-cycle>
            </div>
29 30 31 32 33 34
            <div id="underline-2" role="tabpanel" aria-labelledby="underline-item-2"
                *ngIf="activeTab === 'underline-2'">
                <app-define-document-form *ngIf="groupShow=='1'"
                    (sendGroupShow)="groupShow=$event"></app-define-document-form>
                <app-edit-define-document-form *ngIf="groupShow=='2'"
                    (sendGroupShow)="groupShow=$event"></app-edit-define-document-form>
35 36
            </div>
        </div>
Ooh-Ao committed
37

38
    </div>
Ooh-Ao committed
39
</div>