hrms-mgt/src/modules/04_registryPerson/components/detail/GovernmentInformation/Main.vue

94 lines
3.8 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref } from "vue";
2025-02-24 15:55:47 +07:00
import { useCounterMixin } from "@/stores/mixin";
import { useRoute } from "vue-router";
const { pathRegistryEmp } = useCounterMixin();
const route = useRoute();
/** importComponents*/
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"; //ปฏิบัติราชการพิเศษ
import ActingPos from "@/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue"; //รักษาการในตำแหน่ง
import HelpGovernmentDetail from "@/modules/04_registryPerson/components/detail/GovernmentInformation/06_HelpGovernment.vue"; //ช่วยราชการ
2025-02-19 13:10:35 +07:00
import Postion from "@/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue";
2026-03-24 16:50:26 +07:00
import AbsentLate from "@/modules/04_registryPerson/components/detail/GovernmentInformation/08_AbsentLate.vue";
2024-10-21 17:56:47 +07:00
import { useRegistryNewDataStore } from "@/modules/04_registryPerson/store";
2025-02-24 15:55:47 +07:00
const empType = ref<string>(pathRegistryEmp(route.name?.toString() ?? ""));
const tab = ref<string>("1");
2024-10-21 17:56:47 +07:00
const storeRegistry = useRegistryNewDataStore();
</script>
2025-02-24 15:55:47 +07:00
<template>
<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>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
active-color="blue-8"
align="left"
bordered
narrow-indicator
indicator-color="transparent"
dense
class="text-grey q-pl-sm"
>
<q-tab name="1" label="ข้อมูลราชการ" />
2025-02-19 13:10:35 +07:00
<q-tab name="7" label="ตำแหน่ง" />
2025-02-24 15:55:47 +07:00
<q-tab v-if="empType != '-employee'" name="5" label="รักษาการในตำแหน่ง" />
<q-tab v-if="empType != '-employee'" name="6" label="ช่วยราชการ" />
<q-tab name="2" label="วินัย" />
<q-tab name="3" label="การลา" />
2026-03-24 16:50:26 +07:00
<q-tab name="8" label="ขาดราชการ/มาสาย" />
<q-tab name="4" label="ปฏิบัติราชการพิเศษ" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<Info :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="2">
<Discipline :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="3">
<Leave :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="4">
<PerformSpecialWork :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
2025-02-24 15:55:47 +07:00
<q-tab-panel v-if="empType != '-employee'" name="5">
2026-02-03 16:23:08 +07:00
<ActingPos
:is-leave="storeRegistry.isLeave"
:citizen-id="storeRegistry.citizenId"
/>
</q-tab-panel>
2025-02-24 15:55:47 +07:00
<q-tab-panel v-if="empType != '-employee'" name="6">
2026-02-03 16:23:08 +07:00
<HelpGovernmentDetail
:is-leave="storeRegistry.isLeave"
:citizen-id="storeRegistry.citizenId"
/>
</q-tab-panel>
2026-03-24 16:50:26 +07:00
<q-tab-panel name="8">
<AbsentLate :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
2025-02-19 13:10:35 +07:00
<q-tab-panel name="7">
2026-02-03 16:23:08 +07:00
<Postion
:is-leave="storeRegistry.isLeave"
:citizen-id="storeRegistry.citizenId"
/>
2025-02-19 13:10:35 +07:00
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>