ทะเบียนประวัติ เพิ่ม tab รักษาการในตำแหน่ง tab ช่วยราชการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-24 14:08:34 +07:00
parent 2fb4533c08
commit c9c67293a7
5 changed files with 1631 additions and 4 deletions

View file

@ -6,6 +6,8 @@ import Info from "@/modules/04_registryPerson/components/detail/GovernmentInform
import Discipline from "@/modules/04_registryPerson/components/detail/GovernmentInformation/02_Discipline.vue"; //
import Leave from "@/modules/04_registryPerson/components/detail/GovernmentInformation/03_Leave.vue"; //
import PerformSpecialWork from "@/modules/04_registryPerson/components/detail/GovernmentInformation/04_PerformSpecialWork.vue"; //
import ActingPos from "@/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue"; //
import HelpGovernmentDetail from "@/modules/04_registryPerson/components/detail/GovernmentInformation/06_HelpGovernment.vue"; //
import { useRegistryNewDataStore } from "@/modules/04_registryPerson/store";
@ -35,21 +37,29 @@ const storeRegistry = useRegistryNewDataStore();
<q-tab name="2" label="วินัย" />
<q-tab name="3" label="การลา" />
<q-tab name="4" label="ปฏิบัติราชการพิเศษ" />
<q-tab name="5" label="รักษาการในตำแหน่ง" />
<q-tab name="6" label="ช่วยราชการ" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<Info :is-leave="storeRegistry.isLeave"/>
<Info :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="2">
<Discipline :is-leave="storeRegistry.isLeave"/>
<Discipline :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="3">
<Leave :is-leave="storeRegistry.isLeave"/>
<Leave :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="4">
<PerformSpecialWork :is-leave="storeRegistry.isLeave"/>
<PerformSpecialWork :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="5">
<ActingPos :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="6">
<HelpGovernmentDetail :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
</q-tab-panels>
</template>