ทะเบียนประวัติ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-08 16:46:36 +07:00
parent f6f28dd101
commit be7add9818
18 changed files with 292 additions and 3 deletions

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>ใบอนญาตประกอบวชาช</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>การฝกอบรม/งาน</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>เครองราชอสรยาภรณ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>ประกาศเกยรต</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>ผลการประเมนการปฏราชการ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,62 @@
<script setup lang="ts">
import { ref } from "vue";
/** importComponents*/
import ProfessionalLicense from "@/modules/04_registryNew/components/detail/Achievement/01_ProfessionalLicense.vue";
import Train from "@/modules/04_registryNew/components/detail/Achievement/02_Train.vue";
import Insignia from "@/modules/04_registryNew/components/detail/Achievement/03_Insignia.vue";
import DeclarationHonor from "@/modules/04_registryNew/components/detail/Achievement/04_DeclarationHonor.vue";
import ResultsPerformance from "@/modules/04_registryNew/components/detail/Achievement/05_ResultsPerformance.vue";
const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center" style="font-size: 22px">
<q-icon name="mdi-cash" class="q-mr-md" />
<span>อมลผลงานและเครองราชฯ</span>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
dense
class="text-grey"
active-color="blue"
indicator-color="white"
align="justify"
narrow-indicator
bordered
>
<q-tab name="1" label="ใบอนุญาตประกอบวิชาชีพ" />
<q-tab name="2" label="การฝึกอบรม/ดูงาน" />
<q-tab name="3" label="เครื่องราชอิสริยาภรณ์" />
<q-tab name="4" label="ประกาศเกียรติคุณ" />
<q-tab name="5" label="ผลการประเมินการปฏิบัติราชการ" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<ProfessionalLicense />
</q-tab-panel>
<q-tab-panel name="2">
<Train />
</q-tab-panel>
<q-tab-panel name="3">
<Insignia />
</q-tab-panel>
<q-tab-panel name="4">
<DeclarationHonor />
</q-tab-panel>
<q-tab-panel name="4">
<PerformSpecialWork />
</q-tab-panel>
<q-tab-panel name="5">
<ResultsPerformance />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>อมลราชการ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div></div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>การลา</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>ปฏราชการพเศษ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,54 @@
<script setup lang="ts">
import { ref } from "vue";
/** importComponents*/
import Info from "@/modules/04_registryNew/components/detail/GovernmentInformation/01_Info.vue";
import Discipline from "@/modules/04_registryNew/components/detail/GovernmentInformation/02_Discipline.vue";
import Leave from "@/modules/04_registryNew/components/detail/GovernmentInformation/03_Leave.vue";
import PerformSpecialWork from "@/modules/04_registryNew/components/detail/GovernmentInformation/04_PerformSpecialWork.vue";
const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center" style="font-size: 22px">
<q-icon name="mdi-account-tie" class="q-mr-md" />
<span>อมลราชการ</span>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
dense
class="text-grey"
active-color="blue"
indicator-color="white"
align="justify"
narrow-indicator
bordered
>
<q-tab name="1" label="ข้อมูลราชการ" />
<q-tab name="2" label="วินัย" />
<q-tab name="3" label="การลา" />
<q-tab name="4" label="ปฏิบัติราชการพิเศษ" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<Info />
</q-tab-panel>
<q-tab-panel name="2">
<Discipline />
</q-tab-panel>
<q-tab-panel name="3">
<Leave />
</q-tab-panel>
<q-tab-panel name="4">
<PerformSpecialWork />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>อมลอนๆ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>เอกสารหลกฐาน</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,44 @@
<script setup lang="ts">
import { ref } from "vue";
/** importComponents*/
import OtherInformation from "@/modules/04_registryNew/components/detail/Other/01_OtherInformation.vue";
import Documentipline from "@/modules/04_registryNew/components/detail/Other/02_Document.vue";
const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center" style="font-size: 22px">
<q-icon name="mdi-bookmark" class="q-mr-md" />
<span>เอกสารหลกฐานและอนๆ</span>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
dense
class="text-grey"
active-color="blue"
indicator-color="white"
align="justify"
narrow-indicator
bordered
>
<q-tab name="1" label="ข้อมูลอื่นๆ" />
<q-tab name="2" label="เอกสารหลักฐาน" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<OtherInformation />
</q-tab-panel>
<q-tab-panel name="2">
<Documentipline />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>ตำแหน/เงนเดอน</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,6 @@
<script setup lang="ts"></script>
<template>
<div>นทกวนทไมไดบเงนเดอนฯ</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,44 @@
<script setup lang="ts">
import { ref } from "vue";
/** importComponents*/
import PositionSalary from "@/modules/04_registryNew/components/detail/Salary/01_PositionSalary.vue";
import NotReceiveSalary from "@/modules/04_registryNew/components/detail/Salary/02_NotReceiveSalary.vue";
const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center" style="font-size: 22px">
<q-icon name="mdi-account" class="q-mr-md" />
<span>อมลเงนเดอน/าจาง</span>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
dense
class="text-grey"
active-color="blue"
indicator-color="white"
align="justify"
narrow-indicator
bordered
>
<q-tab name="1" label="ตำแหน่ง/เงินเดือน" />
<q-tab name="2" label="บันทึกวันที่ไม่ได้รับเงินเดือนฯ" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<PositionSalary />
</q-tab-panel>
<q-tab-panel name="2">
<NotReceiveSalary />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>

View file

@ -4,6 +4,10 @@ import { ref } from "vue";
import { useRegistryDetailNewDataStore } from "@/modules/04_registryNew/stores/DetailMain";
import PersonalInformationMain from "@/modules/04_registryNew/components/detail/PersonalInformation/Main.vue";
import GovernmentInformationMain from "@/modules/04_registryNew/components/detail/GovernmentInformation/Main.vue";
import salaryMain from "@/modules/04_registryNew/components/detail/Salary/Main.vue";
import AchievementMain from "@/modules/04_registryNew/components/detail/Achievement/Main.vue";
import OtherMaim from "@/modules/04_registryNew/components/detail/Other/Main.vue";
const store = useRegistryDetailNewDataStore();
@ -26,12 +30,12 @@ const itemsTab = ref<any>([
{
name: "4",
icon: "mdi-cash",
label: "ข้อมูลเครื่องราช",
label: "ข้อมูลผลงานและเครื่องราช",
},
{
name: "5",
icon: "mdi-bookmark",
label: "ข้อมูลอื่นๆ",
label: "เอกสารหลักฐานและอื่นๆ",
},
]);
@ -66,7 +70,10 @@ const splitterModel = ref<number>(12);
:name="tab.name"
>
<PersonalInformationMain v-if="store.tabMain === '1'" />
<!-- <div class="text-h4 q-mb-md">{{ tab.label }}</div> -->
<GovernmentInformationMain v-if="store.tabMain === '2'" />
<salaryMain v-if="store.tabMain === '3'" />
<AchievementMain v-if="store.tabMain === '4'" />
<OtherMaim v-if="store.tabMain === '5'" />
</q-tab-panel>
</q-tab-panels>
</template>