2024-03-08 16:46:36 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref } from "vue";
|
|
|
|
|
|
|
|
|
|
/** importComponents*/
|
2024-09-18 17:24:21 +07:00
|
|
|
import Info from "@/modules/04_registryPerson/components/detail/GovernmentInformation/01_Info.vue"; //ข้อมูลราชการ
|
|
|
|
|
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"; //ปฏิบัติราชการพิเศษ
|
2025-01-24 14:08:34 +07:00
|
|
|
import ActingPos from "@/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue"; //รักษาการในตำแหน่ง
|
|
|
|
|
import HelpGovernmentDetail from "@/modules/04_registryPerson/components/detail/GovernmentInformation/06_HelpGovernment.vue"; //ช่วยราชการ
|
2024-03-08 16:46:36 +07:00
|
|
|
|
2024-10-21 17:56:47 +07:00
|
|
|
import { useRegistryNewDataStore } from "@/modules/04_registryPerson/store";
|
|
|
|
|
|
2024-03-08 16:46:36 +07:00
|
|
|
const tab = ref<string>("1");
|
2024-10-21 17:56:47 +07:00
|
|
|
const storeRegistry = useRegistryNewDataStore();
|
2024-03-08 16:46:36 +07:00
|
|
|
</script>
|
|
|
|
|
<template>
|
2024-04-23 17:56:51 +07:00
|
|
|
<div class="row items-center q-my-md">
|
|
|
|
|
<div class="text-dark row items-center q-px-md">
|
|
|
|
|
<q-icon name="mdi-account" class="q-mr-md" size="22px" />
|
|
|
|
|
<div class="text-subtitle1 text-weight-bold">ข้อมูลราชการ</div>
|
2024-03-08 16:46:36 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-tabs
|
|
|
|
|
v-model="tab"
|
2024-04-23 17:56:51 +07:00
|
|
|
active-color="blue-8"
|
2024-03-11 11:25:42 +07:00
|
|
|
align="left"
|
2024-03-08 16:46:36 +07:00
|
|
|
bordered
|
2024-04-23 17:56:51 +07:00
|
|
|
narrow-indicator
|
|
|
|
|
indicator-color="transparent"
|
|
|
|
|
dense
|
|
|
|
|
class="text-grey q-pl-sm"
|
2024-03-08 16:46:36 +07:00
|
|
|
>
|
|
|
|
|
<q-tab name="1" label="ข้อมูลราชการ" />
|
|
|
|
|
<q-tab name="2" label="วินัย" />
|
|
|
|
|
<q-tab name="3" label="การลา" />
|
|
|
|
|
<q-tab name="4" label="ปฏิบัติราชการพิเศษ" />
|
2025-01-24 14:08:34 +07:00
|
|
|
<q-tab name="5" label="รักษาการในตำแหน่ง" />
|
|
|
|
|
<q-tab name="6" label="ช่วยราชการ" />
|
2024-03-08 16:46:36 +07:00
|
|
|
</q-tabs>
|
|
|
|
|
<q-separator />
|
|
|
|
|
|
|
|
|
|
<q-tab-panels v-model="tab" animated>
|
|
|
|
|
<q-tab-panel name="1">
|
2025-01-24 14:08:34 +07:00
|
|
|
<Info :is-leave="storeRegistry.isLeave" />
|
2024-03-08 16:46:36 +07:00
|
|
|
</q-tab-panel>
|
|
|
|
|
<q-tab-panel name="2">
|
2025-01-24 14:08:34 +07:00
|
|
|
<Discipline :is-leave="storeRegistry.isLeave" />
|
2024-03-08 16:46:36 +07:00
|
|
|
</q-tab-panel>
|
|
|
|
|
<q-tab-panel name="3">
|
2025-01-24 14:08:34 +07:00
|
|
|
<Leave :is-leave="storeRegistry.isLeave" />
|
2024-03-08 16:46:36 +07:00
|
|
|
</q-tab-panel>
|
|
|
|
|
<q-tab-panel name="4">
|
2025-01-24 14:08:34 +07:00
|
|
|
<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" />
|
2024-03-08 16:46:36 +07:00
|
|
|
</q-tab-panel>
|
|
|
|
|
</q-tab-panels>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|