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

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,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>