manual v2

This commit is contained in:
kanyarat 2024-05-29 14:06:59 +07:00
parent e63ba4b3cd
commit 2cf968ae7e
74 changed files with 913 additions and 21656 deletions

View file

@ -0,0 +1,239 @@
<script lang="ts" setup>
import { nextTick, onMounted, onUnmounted, ref, watch } from "vue";
import { useRoute } from "vue-router";
import MarkdownIt, { type Token } from "markdown-it";
// @ts-expect-error
import mditFigureWithPCaption from "markdown-it-image-figures";
import mditAnchor from "markdown-it-anchor";
import { useManualStore } from "@/stores/manual";
import { storeToRefs } from "pinia";
import { useQuasar } from "quasar";
const md = new MarkdownIt().use(mditAnchor).use(mditFigureWithPCaption, {
figcaption: "alt",
});
const quasar = useQuasar();
const route = useRoute();
const manual = useManualStore();
const { toc } = storeToRefs(manual);
const text = ref("");
const parsed = ref<Token[]>([]);
const chapter = ref(0);
const found = ref(false);
const active = ref("");
function onScroll() {
let current = "";
document.querySelectorAll("h2").forEach((v) => {
if (
window.top &&
window.top.scrollY + window.innerHeight / 2 > v.offsetTop
) {
current = v.id;
}
});
active.value = current;
}
function onResize() {
if (window.innerWidth > 1024) {
toc.value = true;
}
}
async function scrollTo(id: string) {
const pos = document.getElementById(id)?.offsetTop;
await nextTick(() => {
if (window.innerWidth < 1024) toc.value = false;
});
if (pos)
window.scrollTo({
top: pos,
behavior: "smooth",
});
}
onMounted(async () => {
window.addEventListener("scroll", onScroll);
window.addEventListener("resize", onResize);
if (typeof route.params.name === "string") {
const res = await fetch(`/${route.params.name}.md`);
if (res && res.ok) {
text.value = await res.text();
found.value = true;
chapter.value = +route.params.name.slice(8, 9) - 1;
parsed.value = md.parse(text.value, {});
}
}
});
onUnmounted(() => {
window.removeEventListener("scroll", onScroll);
window.removeEventListener("resize", onResize);
});
</script>
<template>
<div v-if="found" style="display: flex" class="markdown">
<div
style="
width: 100%;
flex: 1;
background-color: white;
border-radius: 0.5rem;
border: 1px solid #e1e1e9;
padding: 1rem;
"
v-html="md.render(text.replaceAll('images/', '/images/'))"
></div>
</div>
<q-drawer
v-if="toc"
side="right"
class="bg-grey-2"
show-if-above
v-model="toc"
:width="250"
:behavior="$q.screen.width > 1024 ? 'desktop' : 'mobile'"
>
<q-scroll-area class="fit">
<q-list padding>
<template v-for="(token, idx) in parsed">
<q-item
class="tabNative"
active-class="text-blue-7 active-item text-weight-medium tabActive"
:active="active === token.attrGet('id')"
@click="scrollTo(token.attrGet('id') || '')"
v-if="token.tag === 'h2' && token.type === 'heading_open'"
clickable
v-ripple
dense
exact
>
<q-item-section>
<q-item-label>
<q-icon size="11px" name="mdi-circle-medium" />
<span class="q-pl-xs">{{ parsed[idx + 1].content }}</span>
</q-item-label>
</q-item-section>
</q-item>
</template>
</q-list>
</q-scroll-area>
</q-drawer>
</template>
<style scoped>
.toc {
top: 4rem;
}
.active {
color: red;
}
.markdown {
counter-set: h1 v-bind(chapter);
counter-reset: h1;
}
.markdown :deep(:where(h1, h2, h3, h4, h5, h6)) {
line-height: 1.5;
padding-block: 1rem !important;
}
.markdown :deep(h1) {
counter-reset: h2;
}
.markdown :deep(h2) {
counter-reset: h3;
}
.markdown :deep(h3) {
counter-reset: h4;
}
.markdown :deep(h1:before) {
counter-increment: h1;
content: counter(h1) ". ";
}
.markdown :deep(h2:before) {
counter-increment: h2;
content: counter(h1) "." counter(h2) ". ";
}
.markdown :deep(h3:before) {
counter-increment: h3;
content: counter(h1) "." counter(h2) "." counter(h3) ". ";
}
.markdown :deep(h4:before) {
counter-increment: h4;
content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) ". ";
}
.markdown :deep(blockquote) {
background-color: #ecebeb;
border-radius: 8px;
padding: 8px;
margin-bottom: 1rem;
}
.markdown :deep(blockquote > p:last-child) {
margin-bottom: 0;
}
.markdown :deep(img) {
vertical-align: middle;
}
.markdown :deep(p img) {
padding-inline: 0.25rem;
}
.markdown :deep(figure) {
margin: 0;
text-align: center;
padding: 1rem;
width: 100%;
}
.markdown :deep(figure img) {
max-width: 90%;
}
.markdown :deep(p:has(img:only-child) img) {
max-width: 100%;
}
.markdown :deep(.abc) {
color: green;
}
.markdown :deep(h1) {
text-align: left;
margin-top: -1rem;
margin-inline: -1rem;
font-size: 24px;
font-weight: 700;
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 0px 16px;
}
.markdown :deep(figcaption) {
text-align: center;
}
.markdown :deep(h2) {
text-align: left;
margin-block: 0;
font-size: 18px;
font-weight: 600;
padding: 0px 16px;
color: #02a998;
}
</style>

View file

@ -1,359 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<div class="row col-12">
<div></div>
<div class="col-12">
<!-- <div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div class="col-12 text16">
เปดโปรแกรม Google Chrome เวอร 20 นไป หร Firefox เวอร
14 นไป กรอก
<span class="text-green">URL: https://bma-ehr.frappet.com</span>
ลงในชอง Address จากนนกดแป Enter บอร 1 คร งร
</div>
<div class="col-12">
<q-img
src="@/assets/manual/01_login/1_main/1-1.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 11 แสดงการเขาสเวบไซต
</div>
</div>
</q-card>
</div>
<!-- <div class="col-3 row justify-center" style="position: relative">
<q-list
dense
padding
class="col-12"
style="max-width: 328px; position: absolute; top: 50px"
>
<q-expansion-item label="การเข้าสู่ระบบ">
<q-list dense>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเขาสระบบโดยใช User name และ Password</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเปลยนรหสผานผใชงาน</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การลงทะเบยนผใชงานใหม</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">การออกจากระบบ</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การแสดงแจงเตอน</q-item-section
>
</q-item>
</q-list>
</q-expansion-item>
<q-expansion-item label="ระบบข้อมูลหลัก" class="text-grey-7">
<q-list dense>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเขาสระบบโดยใช User name และ Password</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเปลยนรหสผานผใชงาน</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การลงทะเบยนผใชงานใหม</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">การออกจากระบบ</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การแสดงแจงเตอน</q-item-section
>
</q-item>
</q-list>
</q-expansion-item>
<q-expansion-item label="ระบบโครงสร้างอัตรากำลัง" class="text-grey-7">
<q-list dense>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">ดการตำแหน</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>แผนภโครงสราง</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">แผนภองคกร</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">งโครงสราง</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">ดการบญช 2</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">รายงานบญช</q-item-section>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7">ดการบญช 2</q-item-section>
</q-item>
</q-list>
</q-expansion-item>
<q-expansion-item
label="หน้าจัดการระบบทะเบียนประวัติ"
class="text-grey-7"
>
<q-list dense>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเขาสหนาระบบทะเบยนประว</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การคนหาขอมลทะเบยนประว</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การดรายละเอยดขอมลทะเบยนประว</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การเพ แกไข
ประวแกไขขอมลทะเบยนประว</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การคนหาขอมลสวนต
การเลอกคอลมนแสดงผลขอม</q-item-section
>
</q-item>
<q-item dense clickable v-ripple>
<q-item-section
avatar
class="q-pa-none"
style="min-width: 36px; margin-left: 30px"
>
</q-item-section>
<q-item-section class="text-grey-7"
>การปรบหนาตางแสดงผลหนาขอมลสวนต</q-item-section
>
</q-item>
</q-list>
</q-expansion-item>
</q-list>
</div> -->
</div>
</template>
<style>
.q-item__section--side .q-icon {
font-size: 20px;
}
</style>

View file

@ -1,103 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9"> -->
<!-- <div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
> -->
<!-- <div class="custom-topic text-dark"> -->
<!-- <div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- </div> -->
<!-- </q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
1.1 การเขาสระบบโดยใช User name และ Password
</div>
<q-img
src="@/assets/manual/01_login/2_login/1-2.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 2 การเขาสระบบโดยการกรอกชอผใชงานและรหสผาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอผใชงาน <br />
หมายเลข 2 องสำหรบกรอกรหสผานใชงาน <br />
หมายเลข 3 มสำหรบคลกเขาสระบบใชงาน <br />
หมายเลข 4 องสำหรบคล หากตองการใหระบบจดจำการเขาสระบบ <br />
หมายเลข 5
องสำหรบคลกหากลมรหสผานเพอใหทำระบบทำการรเซตรหสผานใหม
<br />
หมายเลข 6 องสำหรบคลกเพอลงทะเบยนผใชงานใหม <br />
</div>
<div class="col-12 text16" style="margin-top: 40px; margin-left: 10px">
- เมอเขาสระบบบรหารทรพยากรบคคลกรงเทพมหานคร
ระบบแสดงหนาจอของระบบบรหารทรพยากรบคคลกรงเทพมหานครของเจาหนาทแลระบบ
</div>
<q-img
src="@/assets/manual/01_login/2_login/1-3.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 3 การเขาสระบบหลงจากกรอกชอผใชงาน
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style lang="scss" scoped>
.custom-topic {
font-weight: bold;
font-size: 1.2rem;
}
</style>

View file

@ -1,132 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
1.2 การเปลยนรหสผานผใชงาน
</div>
<div
class="col-12 text16 q-gutter-xs"
style="margin-top: 20px; margin-left: 10px"
>
- หากลมรหสผานผใชงานใหทำการใชเมาสคล
<span
class="dd text-red"
>
มรหสผาน
</span>
จากนนระบบจะหน มรหสผาน
ใหทำการกรอกชอผใชงานหรอทอยเมลของผใชงานลงไป
จากนนทำการคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: white;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
"
>
นย
</span>
ระบบจะทำการรเซตรหสผานใหมใหโดยการสงคำแนะนำไปทางอเมลของผใชงานหรอหากไมองการ
ใหทำการใชเมาสคล
<span
style="
background-color: #ffffff;
border: 1px solid hsl(0, 100%, 50%);
color: red;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
"
>
« กลบหนาเขาสระบบ
</span>
เพอกลบไปยงหนาเขาสระบบเพอใชงาน
</div>
<q-img
src="@/assets/manual/01_login/3_password/1-4.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 4 แสดงการกรอกขอมลหากลมรหสผานใชงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอหรออเมลของผใชงาน <br />
หมายเลข 2มสำหรบคลกเพอยนยนการใหระบบสงขอมลการรเซตรหสผานให<br />
หมายเลข 3 มสำหรบคลกเพอยอนกลบไปหนาเขาสระบบ <br />
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style>
.dd {
background-color: rgb(255, 255, 255);
border: 1px solid red;
text-align: center;
display: inline-block;
padding: 0px 5px;
font-size: 13px;
}
</style>

View file

@ -1,129 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
1.3 การลงทะเบยนผใชงานใหม
</div>
<div
class="col-12 q-gutter-xs"
style="margin-top: 20px; margin-left: 10px"
>
-
หากเปนผใชงานใหมองการทจะลงทะเบยนเพอใชงานระบบทรพยากรบคคคลกรงเทพมหานครใหทำการใชเมาสคล
<span
style="
color: #0082ca;
background-color: #ffffff;
border: 1px solid #0082ca;
text-align: center;
display: inline-block;
padding: 0px 5px;
font-size: 13px;
"
>
ลงทะเบยน
</span>
จากนนระบบแสดงหนาลงทะเบยนผใชงาน
ทำการกรอกขอมลใหครบตามทระบบแนะนำ จากนนทำการใชเมาสคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: white;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
"
>
ลงทะเบยน
</span>
หรอหากไมองการลงทะเบยนผใชงานแลวใหทำการคลกท
<span
style="
background-color: #ffffff;
border: 1px solid #0082ca;
color: #0082ca;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
"
>
« กลบหนาเขาสระบบ
</span>
เพอยกเลกการลงทะเบยนผใชงานใหมหรอยอนกลบไปยงหนาเขาสระบบ
</div>
<q-img
src="@/assets/manual/01_login/4_newuser/1-5.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 5 แสดงการกรอกขอมลลงทะเบยนผใชงานใหม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอผลงทะเบยนใชงาน <br />
หมายเลข 2 องสำหรบกรอกนามสกลผลงทะเบยนใชงาน <br />
หมายเลข 3 องสำหรบกรอกอเมลผลงทะเบยนใชงาน <br />
หมายเลข 4 องสำหรบกรอกชอผใชงานของผลงทะเบยนใชงาน <br />
หมายเลข 5 องสำหรบกรอกตงรหสผานสำหรบใชงานระบบ <br />
หมายเลข 6 องสำหรบกรอกยนยนรหสผานสำหรบใชงานระบบ <br />
หมายเลข 7 มสำหรบคลกยนยนการลงทะเบยนผใชงาน <br />
หมายเลข 8 มสำหรบคลกเพอยอนกลบหนาเขาสระบบ <br />
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,91 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
1.4 การออกจากระบบ
</div>
<div class="col-12 drop" style="margin-top: 20px; margin-left: 10px; align-items: center;">
- หากตองการออกจากระบบหลงจากทใชงานเสรจแล ใหทำการใชเมาสคล
<q-icon name="arrow_drop_down" size="sm"/>
ระบบแสดงเมนอยใหทำการคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: white;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
"
>
ออกจากระบบ
</span>
เพอออกจากระบบ งร
</div>
<q-img
src="@/assets/manual/01_login/5_logout/1-6.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 6 แสดงการออกจากระบบผใชงาน
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style>
.drop {
margin-left: 0px;
margin-top: 0px;
}
</style>

View file

@ -1,186 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
การเขาสระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
1.5 การแสดงแจงเตอน
</div>
<div class="col-12 q-gutter-xs" style="margin-top: 20px; margin-left: 10px; align-items: center;">
- ระบบจะทำการแจงเตอนการขอคำรองแกไขขอมลตางๆ ใหทำการใชเมาสคล
<q-icon name="mdi-bell" class="bell" style="margin: 0 5px;"/>
เพอดการแจงเตอนหรอการขอคำรองตางๆ จากนนทำการคลกเขาไปในการขอคำรอง
ระบบจะทำการแสดงขอมลรายละเอยดการขอคำรองตางๆ ให โดยทสามารถทำการคล
<q-icon name="mdi-close" style="margin: 0 5px;"/> เพอลบแจงเตอนขอมลคำรองทงเพอลบแจงเตอนขอมลคำรองท
</div>
<q-img
src="@/assets/manual/01_login/6_noti/1-7.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 7 แสดงการดการแจงเตอนคำรองขอตางๆ
</div>
<div class="col-12 q-gutter-xs" style="margin-top: 50px; margin-left: 10px; align-items: center;">
- หากตองการดอมลการรองขอตางๆ ใหทำการใชเมาสคลกเลอกการแจงเตอนจากนนระบบจะทำการแสดงขอมลการแจงเตอนเปนกลองขอความ โดยทสามารถทำการลบขอมลรองขอโดยการคล
<q-icon name="mdi-trash-can" style="margin: 0 5px;"/>
หรอหากตองการจดการขอมลคำรองอนๆ ใหทำการคล
<q-icon name="mdi-dots-vertical" style="margin: 0 5px;"/>
หรอหากจะยอนกลบกทำการคล
<q-icon name="mdi-reply" style="margin: 0 5px;"/>
เพอยอนกลบไปยงหนาขอมลกอนหนาน
</div>
<q-img
src="@/assets/manual/01_login/6_noti/1-8.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 8 แสดงการดรายละเอยดการแจงเตอน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบแสดงขอความการแจงเตอนคำรองขอตางๆ <br>
หมายเลข 2 องแสดงขอมลรายละเอยดขอความ <br>
</div>
<div class="col-12"
style="margin-top: 50px; margin-left: 10px; align-items: center;">
- การดาวนโหลดไฟลเอกสารแนบคำรองขอตางๆ เพอดเอกสารเพมเตมการรองขอใหทำการใชเมาสคล
<span
style="
background-color: #E4F2FD;
border: 1px solid #E4F2FD;
color: #0082CA;
font-size: 13px;
text-align: center;
display: inline-block;
padding: 0px 5px;
margin-left: 5px;
margin-right: 5px;
"
>
ดาวนโหลดทงหมด
</span>
จากนนระบบทำการดาวนโหลดไฟลเอกสารแนบหรอหากคำรองขอไหนทสำคญสามารถทำการใชเมาสคล
<q-icon name="mdi-star" style="margin: 0 5px; color: #919191;"/>
ใหเป
<q-icon name="mdi-star" style="margin: 0 5px; color: #ffee00;"/>
เพอใหอความคำรองนนไปอยบนสดของกลองขอความหรอใหความสำคญกบกลองขอความนอน
</div>
<q-img
src="@/assets/manual/01_login/6_noti/1-9.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 1 9 แสดงการดาวนโหลดไฟลเอกสารแนบคำรอง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มดาวสำหรบคลกเพอดนขอความไวบนส <br>
หมายเลข 2 มสำหรบคลกดาวนโหลดไฟลเอกสารแนบคำรอง <br>
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style>
.bell{
background-color: rgba(217, 217, 217, 0.33);
border-radius: 50%;
padding: 5px;
color: #0909098c}
</style>

View file

@ -1,70 +0,0 @@
<script setup lang="ts">
import Mainlogin1 from "../1_login/01_Main.vue";
import login from "../1_login/02_login.vue";
import Password from "../1_login/03_Password.vue";
import newuser from "../1_login/04_newuser.vue";
import logout from "../1_login/05_logout.vue";
import noti from "../1_login/06_noti.vue";
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 20px"
>
อการเขาสระบบ
</div>
<div class="row col-12 q-gutter-xs">
<div
id="Mainlogin"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<Mainlogin1 />
</div>
<div
id="login"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<login />
</div>
<div
id="Password"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<Password />
</div>
<div
id="newuser"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<newuser />
</div>
<div
id="logout"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<logout />
</div>
<div
id="noti"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<noti />
</div>
</div>
</div>
</template>
<style lang="scss" scoped></style>

View file

@ -1,141 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอเขาสระบบทรพยากรบคคล
ปรากฏหนาจอหนาแรกของระบบทรพยาการบคคล ใหกดเลอกแถบเมน อมลหล
งรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/1_main/2-1.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 495px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 1 เมนอมลหล
</div>
</div>
<div
class="col-12 "
style="margin-top: 50px; margin-left: 10px; align-items: center"
>
- เมอกดเลอกเมน อมลหล ระบบปรากฏหนาจดการขอมลหลกดงรปภาพ
</div>
<q-img
src="@/assets/manual/02_data/1_main/2-2.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 2 หนาจดการขอมลหล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
margin-left: 0px;
"
>
จากรปท 2 - 2 แตละหมายเลขมรายละเอยด งน <br>
<div style="margin-left: 50px;">
หมายเลข 1 แถบเมนหลกในหนาจดการขอมลหล <br>
หมายเลข 2 สรปจำนวนขอม <br>
หมายเลข 3 แถบเมนอยของแตละเมนหล <br>
หมายเลข 4 แถบเมนเพ ลบหรอแกไขขอม <br>
หมายเลข 5 รายละเอยดของเมนอย <br>
หมายเลข 6 ประวแกไข <br>
หมายเลข 7 องคนหา เพอสบคนขอมลทองการ <br>
หมายเลข 8 คอลมน กดเลอกรายการเพอใหอมลทเลอกถกซอน <br>
</div>
</div>
<div
class="col-12 "
style="margin-top: 50px; margin-left: 10px; align-items: center"
>
- เมอกดไอคอน
<q-icon name="mdi-pin" style="margin: 0 5px; color: #000000;"/>
แถบเมนดการขอมลหลกและสรปจำนวนขอมลจะถกซอนดงรปภาพ และเมอกดไอคอน
<q-icon name="mdi-pin" style="margin: 0 5px; color: #000000; transform: rotate(90deg);"/>
แถบเมนดการขอมลหลกและสรปจำนวนขอมลจะกลบมาแสดงเหมอนเด งรปภาพท 2 2 หมายเลข1 และ หมายเลข2
</div>
<q-img
src="@/assets/manual/02_data/1_main/2-3.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 3 อนแถบเมนและสรปจำนวนขอม
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,985 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
2.1 อมลเกยวกบบคคล
</div>
<div class="col-12">
<p
style="margin-top:20px;
margin-left: 10px">
- เมอกดเลอกเมน อมลเกยวกบบคคล จะปรากฏรายละเอยดดงรปภาพ
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-4.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 4 รายละเอยดขอมลเกยวกบบคคล
</div>
</div>
<div class="col-12 ">
<p
style="margin-top:50px;
margin-left: 10px">
- เลอกกดแถบเมนอย คำนำหนาช, กลมเลอด, เพศ, ศาสนา, สถานภาพ,
ระดบการศกษา หรอจงหว ระบบแสดงขอม งจะสามารถเพ
ลบหรอแกไขขอมลไดงรปภาพ
งเมนอยอนๆสามารถทำตามขนตอนดงตอไปนได
เนองจากมการทำและการแสดงหนาจอเหมอนกนและในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมน
สามารถเลอกรายการเพอซอน
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-5.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 5 แถบเมนอยขอมลเกยวกบบคคล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบเมนอยของขอมลเกยวกบบคคล ประกอบดวย
คำนำหนาช, กลมเลอด,เพศ, ศาสนา, สถานภาพ,
ระดบการศกษาและจงหว <br />
หมายเลข 2 องคนหาซงสามารถสบคนขอมลทองการ
และชองคอลมนสามารถกดเลอกแตละรายการทองการซอนได <br />
</div>
</div>
<div
class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #00aa86"
/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ
โดยสามารถแกไขรายการทอยไดเลย
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-6.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 6 แกไขขอม
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการ-เผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-7.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 7 เพมขอมลในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงชองเพอใหเพมขอม
<div style="margin-left: 50px;">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบชองเพมขอม <br>
- เมอตองการปดสถานะใหกดตรงไอคอน
<div class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive" aria-hidden="true"
style="font-size: 24px; display: inline-block; padding: 0 0.3em !important ; height: 0.35em;">
<div class="q-toggle__thumb absolute flex flex-center no-wrap" style="top: -0.07em;"></div>
<div class="q-toggle__track"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง และกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบจะปรากฏปาย นทกขอมลรางสำเร งรปภาพ
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-8.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 8 าย นทกขอมลรางสำเร
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกราง ระบบจะขนปาย องการลบขอมลบนทกรางนหรอไม? งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-9.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 9 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-10.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 10 าย ลบขอมลรางสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร เมอทำการกดคลกบนทกขอม
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม? งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-11.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 11 าย องการเผยแพรอมลนหรอไม?
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-12.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 12 าย เผยแพรอมลสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร เมอทำการกดคลกเผยแพร
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-history" style="margin: 0 5px; color: #31ccec;" size="xs"/>
เพอดประวอมลแกไข งรปภาพ ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-13.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 13 ประวแกไขขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคนหาและเลอกแสดงคอลมนอมลประวแกไขคำนำหนาช
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดแถบเมนอย งหว ระบบจะแสดงขอมลระดบจงหว งจะสามารถเพ ลบหรอแกไขขอมลจงหว ไดงรปภาพ และในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน งในหนาขอมลนสามารถกดเลอกรายการจงหวดเพอทำการเพมลบหรอแกไขเขต/อำเภอและแขวง/ตำบลได
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-14.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 14 หนารายละเอยดจงหว
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #00aa86"/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงร โดยสามารถเลอกแกไขรายการทอยได
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-15.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 15 แกไขจงหว
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการ-เผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-16.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 16 เพมขอมลจงหวดในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกเพมขอมลจงหว
<div style="margin-left: 50px;">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบชองเพมขอม <br>
- เมอตองการปดสถานะใหกดตรงไอคอน
<div class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive" aria-hidden="true"
style="font-size: 24px; display: inline-block; padding: 0 0.3em !important ; height: 0.35em;">
<div class="q-toggle__thumb absolute flex flex-center no-wrap" style="top: -0.07em;"></div>
<div class="q-toggle__track"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง และกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม
</div>
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบปรากฏปาย นทกขอมลรางสำเร งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-17.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 17 าย นทกขอมลรางสำเร
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกราง ระบบปรากฏปาย องการลบขอมลรางนหรอไม? งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-18.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 18 าย องการลบขอมลรางนหรอไม?
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-19.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 19 าย ลบขอมลรางสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลรางสำเร เมอทำการกดคลกยนยนการลบขอมลราง
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม? งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-20.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 20 าย องการเผยแพรอมลนหรอไม?
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดป เผยแพร ระบบระบบปรากฏ เผยแพรอมลสำเร งรปภาพ และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-21.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 21 าย เผยแพรอมลสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร เมอทำการทำคลกเผยแพรอม
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-history" style="margin: 0 5px; color: #31ccec;" size="xs"/>
เพอดประวอมลแกไข งรปภาพ ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-22.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 22 ประวแกไขจงหว
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกคนหาและเลอกคอลมนสำหรบแสดงขอมลประวแกไขจงหว
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-chevron-right" style="margin: 0 5px; color: hsl(0, 0%, 0%);" size="xs"/>
แถบรายการจงหวดเพอดรายการเขต/อำเภอของจงหวดนนๆ งรปภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-23.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 23 เลอกรายการเพอดอมลเขต/อำเภอ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 รายชอสำหรบคลกเพอดอมลเพมเตมของจงหวดนนๆ ทำการคลกเลอก
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-chevron-right" style="margin: 0 5px; color: hsl(0, 0%, 0%);" size="xs"/>
แถบรายการจงหวดเพอดรายการเขต/อำเภอของจงหวดนนๆ ระบบจะแสดงรายการเขต/อำเภอ งรปภาพและในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-24.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 24 รายการเขต/อำเภอ
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #02A998;" size="xs"/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงร โดยสามารถเลอกแกไขรายการทอยได
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-25.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 25 แกไขเขต/อำเภอ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคนหาและเลอกแสดงคอลมนอมลประวแกไขคำนำหนาช
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพ เมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอมลโดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-26.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 26 เพมขอมลเขต/อำเภอในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกเพอเพมขอมลเขต
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-chevron-right" style="margin: 0 5px; color: hsl(0, 0%, 0%);" size="xs"/>
แถบรายการเขต/อำเภอเพอดรายการแขวง/ตำบลของจงหวดนนๆ งภาพ
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-27.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 27 เลอกรายการเพอดอมลแขวง/ตำบล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 รายชอสำหรบคลกเพอดอมลเพมเตมของเขต/อำเภอนนๆ ทำการคลกเลอก
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-chevron-right" style="margin: 0 5px; color: hsl(0, 0%, 0%);" size="xs"/>
แถบรายการเขต/อำเภอเพอดรายการแขวง/ตำบลของเขต/อำเภอนนๆระบบจะแสดงรายการแขวง/ตำบล งรปภาพ และในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-28.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 28 รายการแขวง/ตำบล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบสำหรบการเขาถงในสวนของการจดการขอมลจงหว การจดการขอมลเขต และการจดการขอมลแขวง/ตำบล
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #02A998;" size="xs"/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ โดยสามารถเลอกแกไขรายการทอยได
</p>
<q-img class="col-12"
src="@/assets/manual/02_data/2_about/2-29.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 29 แกไขแขวง/ตำบล
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพ เมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอมลโดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/2_about/2-30.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 30 เพมขอมลแขวง/ตำบลในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกเพมขอมลแขวง/ตำบล
</div>
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style>
.bell {
background-color: #dadada;
border-radius: 50%;
padding: 5px;
color: #747474;
}
</style>

View file

@ -1,381 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
2.2 อมลโครงสรางหนวยงาน
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอกดเลอกเมน อมลโครงสรางหนวยงาน จะปรากฏรายละเอยดดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-31.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 31 รายละเอยดขอมลโครงสรางหนวยงาน
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เลอกกดแถบเมนอย อหนวยงาน/วนราชการ, อยอหนวยงาน/วนราชการ, ประเภทของหนวยงาน/วนราชการ, ระดบของหนวยงาน/วนราชการ,สถานะของหนวยงาน/วนราชการ, หมายเลขโทรศพทดตอจากภายในหนวยงาน/วนราชการ,
หมายเลขโทรศพทดตอจากภายนอกหนวยงาน/วนราชการหรอหมายเลขโทรสาร ระบบแสดงขอม
เลอกซงจะสามารถเพ ลบหรอแกไขขอมลไดงรปภาพ งเมนอยอนๆสามารถทำตามขนตอนดงตอไปนได เนองจากมการทำและการแสดงหนาจอเหมอนกนและในกรอบสแดง
องคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-32.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 32 แถบเมนอยขอมลโครงสรางหนวยงาน
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 คอลมนแสดงชอคอลมนแสดงขอมลยอยของขอมลโครงสรางหนวยงาน <br>
หมายเลข 2 องสำหรบกรอกคนหาและเลอกคอลมนแสดงขอมลตามทไดไดการคนหา
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #02A998;" size="xs"/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ โดยสามารถแกไขรายการทอยไดเลย
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-33.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 33 แกไขขอม
</div>
</div>
<div class="col-12" >
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอม ระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพ เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง(อมลยงไมการเผยแพร) สามารถกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม
</p>
<q-img
src="@/assets/manual/02_data/3_gov/2-34.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 34 เพมขอมลหนวยงานในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกเพมขอมลชอหนวยงาน/หนวยงานตนสงก/วนรายการตนสงก
<div style="margin-left: 50px;">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบชองเพมขอม <br>
- เมอตองการปดสถานะใหกดตรงไอคอน
<div class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive" aria-hidden="true"
style="font-size: 24px; display: inline-block; padding: 0 0.3em !important ; height: 0.35em;">
<div class="q-toggle__thumb absolute flex flex-center no-wrap" style="top: -0.08em;"></div>
<div class="q-toggle__track"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง และกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม
</div>
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบปรากฏปาย นทกขอมลรางสำเร
งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-35.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 35 าย นทกขอมลรางสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร หลงจากทำการกรอกเพมขอมลและทำการกดคลกบนทกขอม <br>
</div>
</div>
<div class="col-12"
style="margin-top: 50px; margin-left: 10px; ">
- กดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกราง ระบบจะขนปาย องการลบขอมลบนทกรางนหรอไม? งรปภาพ
<q-img class="col-12"
src="@/assets/manual/02_data/3_gov/2-36.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 36 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-37.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 37 าย ลบขอมลรางสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลสสำเร หลงจากคลกยนยนการลบขอมลราง </div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-38.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 38 าย องการเผยแพรอมลนหรอไม? </div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-39.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 39 าย เผยแพรอมลสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร หลงจากคลกยนยนการเผยแพรอม
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon name="mdi-history" style="margin: 0 5px; color: #31ccec;" size="xs"/>
เพอดประวอมลแกไข งรปภาพ ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน </p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/3_gov/2-40.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 40 หนาประวแกไขขอม
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกคนหาและเลอกคอลมนแสดงขอมลประวแกไขชอหนวยงาน </div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,195 +0,0 @@
<script setup lang="ts">
import { ref } from "vue"
const rightDrawerOpen = ref(false)
const text = ref("")
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card flat bordered class="col-12 q-pa-md" style="border-radius: 0px 0px 8px 8px">
<div style="font-weight: bold; font-size: 15px; color: #00aa86">2.3 อมลตำแหนงของขาราชการ</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">- เมอกดเลอกเมน อมลตำแหนงของขาราชการ จะปรากฏรายละเอยดดงรปภาพ</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-41.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 41 รายละเอยดขอมลตำแหนงของขาราชการ</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เลอกกดแถบเมนอย ตำแหนงประเภท, อสายงาน, อตำแหนงสายงาน, าน/สาขาของสายงาน, ระดบตำแหน, อตำแหนงทางการบรหาร, านทางการบรหารหร สถานะของตำแหน
ระบบแสดงขอมลโดยสามารถเพ ลบหรอแกไขขอมลไดงรปภาพ งเมนอยอนๆสามารถทำตามขนตอนดงตอไปนไดเนองจากมการทำและการแสดง
หนาจอเหมอนกนและในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-42.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 42 แถบเมนอมลตำแหนงของขาราชการ</div>
<div class="col-12" style="margin-top: -; padding: 10px; background-color: rgb(243, 243, 243); font-size: 14px; margin-top: 20px; border-radius: 5px">
หมายเลข 1 คอลมนแสดงชอคอลมนแสดงขอมลยอยของขอมลตำแหนงของขาราชการ <br />
หมายเลข 2 องสำหรบกรอกคนหาและเลอกคอลมนแสดงขอมลตามทไดไดการคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #02a998" size="xs" />
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ โดยสามารถแกไขรายการทอยไดเลย
</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-43.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 43 แกไขหรอลบขอม</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86" size="xs" />
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอบนทกราง (อมลยงไมการ-เผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%)" size="xs" />
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอเผยแพรอม โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img src="@/assets/manual/02_data/4_officer/2-44.png" style="max-width: 100%; display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px; border: 1px solid #97b2de" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 44 เพมขอมลในชองทปรากฏ</div>
<div style="margin-top: 20px; padding: 10px; background-color: #f3f3f3; font-size: 14px; color: #000000; border-radius: 5px">
หมายเลข 1 องสำหรบกรอกเพมขอมลชอหนวยงาน/หนวยงานตนสงก/วนรายการตนสงก
<div style="margin-left: 50px">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%)" size="xs" />
เพอลบชองเพมขอม <br />
- เมอตองการปดสถานะใหกดตรงไอคอน
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive"
aria-hidden="true"
style="font-size: 24px; display: inline-block; padding: 0 0.3em !important ; height: 0.35em"
>
<div class="q-toggle__thumb absolute flex flex-center no-wrap" style="top: -0.08em"></div>
<div class="q-toggle__track"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอบนทกราง และกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอเผยแพรอม
</div>
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบปรากฏปาย นทกขอมลรางสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-45.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 45 าย นทกขอมลรางสำเร</div>
<div class="col-12" style="margin-top: -; padding: 10px; background-color: rgb(243, 243, 243); font-size: 14px; margin-top: 20px; border-radius: 5px">
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร หลงจากกดบนทกเพมขอมลตำแหนงของขาราชการ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%)" size="xs" />
เพอลบบนทกราง ระบบจะขนปาย องการลบขอมลบนทกรางนหรอไม? งรปภาพ
<q-img
class="col-12"
src="@/assets/manual/02_data/4_officer/2-46.png"
style="max-width: 70%; display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px; border: 1px solid #97b2de"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 46 าย องการลบขอมลบนทกรางนหรอไม?</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-47.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 47 าย ลบขอมลรางสำเร</div>
<div class="col-12" style="margin-top: -; padding: 10px; background-color: rgb(243, 243, 243); font-size: 14px; margin-top: 20px; border-radius: 5px">
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลสำเร หลงจากคลกยนยนการลบขอมลตำแหนงของขาราชการ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435f" size="xs" />
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม? งรปภาพ
</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-48.png" style="max-width: 70%; display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px; border: 1px solid #97b2de" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 48 าย องการเผยแพรอมลนหรอไม?</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-49.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 49 าย เผยแพรอมลสำเร</div>
<div class="col-12" style="margin-top: -; padding: 10px; background-color: rgb(243, 243, 243); font-size: 14px; margin-top: 20px; border-radius: 5px">
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร หลงจากคลกเผยแพรอมลตำแหน
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon name="mdi-history" style="margin: 0 5px; color: #31ccec" size="xs" />
เพอดประวอมลแกไข งรปภาพ ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img src="@/assets/manual/02_data/4_officer/2-50.png" style="display: block; margin: 0 auto; border-radius: 20px; margin-top: 20px" />
<div class="text-center text-grey-6" style="margin-top: 20px">ปภาพท 2 - 50 หนาประวแกไขขอม</div>
<div class="col-12" style="margin-top: -; padding: 10px; background-color: rgb(243, 243, 243); font-size: 14px; margin-top: 20px; border-radius: 5px">
หมายเลข 1 องสำหรบกรอกขอมลเพอคนหาและเลอกคอลมนแสดงขอมลประวแกไขชอตำแหนงของขาราชการททำการกรอกคนหา
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,374 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
2.4 อมลตำแหนงของลกจาง
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอกดเลอกเมน อมลตำแหนงของลกจาง จะปรากฏรายละเอยดดงรปภาพ </div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-51.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 51 รายละเอยดขอมลตำแหนงของลกจาง
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เลอกกดแถบเมนอย อตำแหน, านของตำแหน, กลมงาน, สายงาน, ระดบชนงานหรอสถานะของตำแหน ระบบแสดงขอมลเมนอยทำการเลอก งจะสามารถเพ
ลบหรอแกไขขอมลไดงรปภาพ งเมนอยอนๆสามารถทำตามขนตอนดงตอไปนได เนองจากมการทำและการแสดงหนาจอเหมอนก และในกรอบสแดงทองคนหาสามารถ
บคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-52.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 52 แถบเมนอมลตำแหนงของลกจาง
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 คอลมนแสดงชอคอลมนแสดงขอมลยอยของขอมลตำแหนงของลกจาง <br>
หมายเลข 2 องสำหรบกรอกคนหาและเลอกคอลมนแสดงขอมลตามทไดไดการคนหา
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-pencil-outline" style="margin: 0 5px; color: #02A998;" size="xs"/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ โดยสามารถแกไขรายการทอยไดเลย
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-53.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 53 เพ ลบหรอแกไขขอม
</div>
</div>
<div class="col-12" >
<p
style="margin-top:50px;
margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการ-เผยแพร) โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได สามารถกดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/5_employee/2-54.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 54 เพมขอมลในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกเพมขอมลชอหนวยงาน/หนวยงานตนสงก/วนรายการตนสงก
<div style="margin-left: 50px;">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon name="mdi-trash-can-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบชองเพมขอม <br>
- เมอตองการปดสถานะใหกดตรงไอคอน
<div class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive" aria-hidden="true" style="font-size: 24px; display: inline-block;">
<div class="q-toggle__track"></div>
<div class="q-toggle__thumb absolute flex flex-center no-wrap"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง และกดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอม
</div>
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบปรากฏปาย นทกขอมลรางสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-55.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 55 าย นทกขอมลรางสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลสำเร หลงจากคลกบนทกการเพมขอมลตำแหนงของลกจาง
</div>
</div>
<div class="col-12"
style="margin-top: 50px; margin-left: 10px; ">
- กดไอคอน
<q-icon name="mdi-file-remove-outline" style="margin: 0 5px; color: hsl(0, 100%, 50%);" size="xs"/>
เพอลบบนทกราง ระบบจะขนปาย องการลบขอมลบนทกรางนหรอไม? งรปภาพ
<q-img class="col-12"
src="@/assets/manual/02_data/5_employee/2-56.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 56 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-57.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 57 าย ลบขอมลรางสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลรางสำเร หลงจากคลกยนยนการลบขอมลรางตำแหนงของลกจาง </div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon name="mdi-cloud-upload-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม? งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-58.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 58 าย องการเผยแพรอมลนหรอไม? </div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-59.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 59 าย เผยแพรอมลสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร หลงจากทคลกยนยนการเผยแพรอมลตำแหนงงานของลกจาง
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon name="mdi-history" style="margin: 0 5px; color: #31ccec;" size="xs"/>
เพอดประวอมลแกไข งรปภาพ ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/5_employee/2-60.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 60 หนาประวแกไขขอม
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลเพอคนหาและชองสำหรบเลอกคอลมนแสดงขอมลการคนหาประวแกไขชอตำแหนงของลกจาง
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,596 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
2.5 อมลปฏนวนหย
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอกดเลอกเมน อมลปฏนวนหย จะปรากฏรายละเอยดดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-61.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 61 รายละเอยดขอมลปฏนวนหย
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 การสรปวนหยดในแตละเดอนประจำปนๆ โดยยดวนหยดของการทำงาน 5 <br>
หมายเลข 2 สามารถกดเลอกเดอนและป องการใหระบบแสดง <br>
หมายเลข 3 ไอคอนบวกเปนการเพมวนหย และไอคอนสเหลนมซอนเปนการคดลอกวนหย <br>
หมายเลข 4 เปนการแสดงปฏนแบบตาราง <br>
หมายเลข 5 เปนการแสดงรายการวนหยดของการทำงาน 5 และ 6 <br>
หมายเลข 6 เปนการอธบายแถบส โดยสำเงนจะเปนแถบสของการทำงานวนจนทร-กร(5) และสมแถบสของการทำงานวนจนทร-นเสาร(6) <br>
หมายเลข 7 รายละเอยดวนหยดทการเพ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดไอคอน
<span
style="
background-color: hsl(0, 0%, 100%);
border: 1px solid #C8D3DB;
color: #000000;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 3px 10px;
border-radius: 5px;
margin-left: 10px;
margin-right: 10px;
"
>
<q-icon name="mdi-calendar" style="color: #00aa86;" size="xs"/>
. 2566
</span>
ระบบจะแสดงขอมลใหเลอกเดอนหรอสามารถกดไอคอน หรอเพอเลอนเลอกป งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-62.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 52 แถบเมนอมลตำแหนงของลกจาง
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกเดอนและคลกเลอกป <br>
หมายเลข 2 มสำหรบคลกเลอกเดอนและปอนหนาน <br>
หมายเลข 3 มสำหรบคลกเลอกเดอนและปดไป
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- เมอกดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ระบบจะแสดงเพอใหเพมวนหย โดยสามารถกดเลอกวาเปนวนหยดของทำงาน 5 หร 6 หรอทงหมดจากนนใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนท งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-63.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 63 เพมวนหย
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกว เดอน องการเพมวนหย <br>
หมายเลข 2 องสำหรบกรอกขอมลรายละเอยกคำอธบายการเพมวนหย <br>
หมายเลข 3 องสำหรบคลกเลอกวนหยดของการทำงาน <br>
หมายเลข 4 มสำหรบคลกเพอบนทกขอมลการเพมวนหย
</div>
</div>
<div class="col-12" >
<p
style="margin-top:50px;
margin-left: 10px">
- ในการเพมวนหยดมกหนงว โดยการกดเลอกชองวนท องการเพมวนหยดได งรปภาพเมอกดทองวนทจะปรากฏรายละเอยดใหกรอก งรปภาพกอนหน
</p>
<q-img
src="@/assets/manual/02_data/6_calendar/2-64.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 64 เพมวนหย
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 เลอกคลกชองวนทเพอเพมรายละเอยดขอมลวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอเพมวนหยดเรยบรอยแลวและกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนท ระบบปรากฏปาย เพมวนหยดสำเร งรปภาพ และปรากฏวนหยดทเพมลาส
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-65.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 65 าย เพมวนหยดสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบแสดงขอมลวนหยดในวนทไดทำการเพ <br>
หมายเลข 2 ระบบแสดงสถานะ เพมวนหยดสำเร หลงจากคลกบนทกการเพมขอมลวนหยดเพ
</div>
</div>
<div class="col-12"
style="margin-top: 50px; margin-left: 10px; ">
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
ระบบจะแสดงเพอใหดลอกวนหยดปดลอกวนหย และปลงวนหยดคดลอก จากนนกดไอคอน
<q-icon name="mdi-content-copy" style="margin: 0 5px; color: hwb(0 0% 100%);" size="xs"/>
เพอบนท งรปภาพ
<q-img class="col-12"
src="@/assets/manual/02_data/6_calendar/2-66.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 66 ดลอกวนหย
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคดลอกวนหยดกอนปหนาไปยยงปดไป <br>
หมายเลข 2 องสำหรบคลกเลอกปดลอกวนหยดและชองสำหรบคลกเลอกปลงวนหยดคดลอก
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอเลอกปดลอกวนหย และปลงวนหยดคดลอกเรยบรอยแล และกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
ระบบปรากฏปาย ดลอกวนหยดสำเร งรปภาพs
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-67.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 67 าย ดลอกวนหยดสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ดลอกวนหยดสำเร หลงจากคลกบนทกขอมลคดลอกวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดเลอกไอคอน
<q-icon name="mdi-calendar-month" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ระบบจะแสดงปฏนดงรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-68.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 68 ปฏนวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดเลอกไอคอน
<q-icon name="mdi-format-list-bulleted" style="margin: 0 5px; color: hsl(0, 0%, 78%);" size="xs"/>
ระบบจะแสดงรายการวนหยดโดยสามารถเลอกไดาตองการดรายการวนหยดของการทำงาน 5 และ 6 หากกดเลอกทำงาน 5 ระบบจะแสดง งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-69.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 69 รายการวนหย 5
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอใหระบบแสดงรายการปฏ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- หากกดเลอกทำงาน 6 ระบบจะแสดงรายการดงรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-70.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 70 รายการวนหย 6
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- ในรายการแสดงวนหยดของการทำงาน 5 และ 6 สามารถแกไขหรอลบวนหยดไดโดย กดไอคอน
<q-icon name="mdi-dots-vertical" style="margin: 0 5px; color: hwb(0 31% 69%);" size="xs"/>
ระบบจะขนใหเลอกเมนแกไขวนหย หรอลบวนหยดดงรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-71.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 71 การแกไขหรอลบวนหย
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 เมนอยแกไขวนหยดหรอลบวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดเลอกเมน แกไขวนหย ระบบจะแสดงใหแกไขขอมลดงรปภาพ และเมอแกไขขอมลเรยบรอยแลวใหกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนท
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-72.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 72 แกไขวนหย
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกวนทองการแกไขวนหย <br>
หมายเลข 2 องสำหรบกรอกคำแกไขอธบายวนหย <br>
หมายเลข 3 มสำหรบกดคลกบนทกการแกไขขอมลวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดไอคอน
<q-icon name="mdi-content-save-outline" style="margin: 0 5px; color: #01435F;" size="xs"/>
เพอบนท ระบบปรากฏปาย แกไขขอมลสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/6_calendar/2-73.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 73 าย แกไขขอมลสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ แกไขขอมลสำเร หลงจากททำการคลกบนทกการแกไขขอมลวนหย
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดเลอกเมน ลบวนหย ระบบปรากฏปาย องการลบวนหยดหรอไม งรปภาพ
</p>
</div>
<div class="col-12">
<q-img class="col-12"
src="@/assets/manual/02_data/6_calendar/2-74.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 74 าย องการลบวนหยดหรอไม </div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป ตกลง ระบบปรากฏปาย ลบขอมลสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img class="col-12"
src="@/assets/manual/02_data/6_calendar/2-75.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 75 าย ลบขอมลสำเร
</div>
<div class="col-12"
style="margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลสำเร หลงจากททำการคลกยนยนการลบขอมลวนหย</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,454 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบขอมลหล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
2.6 อมลเครองราชอสรยาภรณ
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอกดเลอกเมน อมลเครองราชอสรยาภรณ
จะปรากฏรายละเอยดดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-76.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 76 รายละเอยดขอมลเครองราชอสรยาภรณ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p style="margin-top: 50px; margin-left: 10px">
- เลอกกดแถบเมนอย ลำดบชนเครองราชฯหรอชอเครองราชฯ
ระบบจะแสดงขอม งจะสามารถเพ
ลบหรอแกไขขอมลไดงรปภาพซงเมนอย นๆสามารถทำตามขนตอน
งตอไปนไดเนองจากมการทำและการแสดงหนาจอเหมอนกนและในกรอบสแดงทองคนหาสามารถสบคนขอมลและชองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-77.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 77 รายละเอยดขอมลเครองราชอสรยาภรณ
</div>
<div
class="col-12"
style="
margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 คอลมนสำหรบคลกเลอกเพอแสดงขอมลตามรายชอททำการคล
<br />
หมายเลข 2
องสำหรบกรอกขอมลเพอคนหาและชองคอลมนสำหรบเลอกเพอแสดงขอมลตามททำการคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ
โดยสามารถเลอกแกไขรายการทอยไดเลย
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-78.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 78 แกไขขอมลเครองราชอสรยาภรณ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมขอมลระบบจะปรากฏชองเพอใหเพมขอมลดงรปภาพและเมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง (อมลยงไมการ-เผยแพร)
โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได
สามารถกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบบนทกรางและสามารถกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอม เพอเผยแพรอม
โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล
และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
src="@/assets/manual/02_data/7_insignia/2-79.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 79 เพมขอมลในชองทปรากฏ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบกรอกเพมขอมลชอหนวยงาน/หนวยงานตนสงก/วนรายการตนสงก
<div style="margin-left: 50px">
- เมอไมองการเพมขอมลแลวใหกดไอคอน
<q-icon
name="mdi-trash-can-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบชองเพมขอม <br />
- เมอตองการปดสถานะใหกดตรงไอคอน
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive"
aria-hidden="true"
style="
font-size: 24px;
display: inline-block;
padding: 0 0.3em !important ;
height: 0.35em;
"
>
<div
class="q-toggle__thumb absolute flex flex-center no-wrap"
style="top: -0.08em"
></div>
<div class="q-toggle__track"></div>
</div>
เพอทจะไมแสดงขอมลนนในหนาอนจากนนใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง และกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอม
</div>
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง (อมลยงไมการเผยแพร) ระบบปรากฏปาย
นทกขอมลรางสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-80.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 80 าย นทกขอมลรางสำเร
</div>
<div
class="col-12"
style="
margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร
หลงจากคลกบนทกการเพมขอมลเครองราชอสรยาภรณ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบบนทกราง ระบบจะขนปาย องการลบขอมลบนทกรางนหรอไม?
งรปภาพ
<q-img
class="col-12"
src="@/assets/manual/02_data/7_insignia/2-81.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 81 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ
และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
</div>
<div class="col-12">
<q-img
class="col-12"
src="@/assets/manual/02_data/7_insignia/2-82.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 82 าย ลบขอมลรางสำเร
</div>
<div
class="col-12"
style="
margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลรางสำเร
หลงจากททำการคลกยนยนการลบขอมลรางของขอมลเครองราชอสรยาภรณ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม?
งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-83.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 83 าย องการเผยแพรอมลนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ
และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
</p>
</div>
<div class="col-12">
<q-img
class="col-12"
src="@/assets/manual/02_data/7_insignia/2-84.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 84 าย เผยแพรอมลสำเร
</div>
<div
class="col-12"
style="
margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร
หลงจากททำการคลกยนยนการเผยแพรอมลเครองราชอสรยาภรณ
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- กดไอคอน
<q-icon
name="mdi-history"
style="margin: 0 5px; color: #31ccec"
size="xs"
/>
เพอดประวอมลแกไข งรปภาพ
ในกรอบสแดงสามารถกรอกทองคนหาเพอสบคนขอมลหรอทองคอลมนสามารถเลอกรายการเพอซอน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/02_data/7_insignia/2-85.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 2 - 85 หนาประวแกไขขอม
</div>
<div
class="col-12"
style="
margin-top: -;
padding: 10px;
background-color: rgb(243, 243, 243);
font-size: 14px;
margin-top: 20px;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบกรอกขอมลเพอคนหาและชองสำหรบคลกเลอกคอลมนแสดงขอม
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,79 +0,0 @@
<script setup lang="ts">
import MainData from "../2_data/21_Main.vue";
import About from "../2_data/22_About.vue";
import gov from "../2_data/23_Gov.vue";
import officer from "../2_data/24_Officer.vue";
import employee from "../2_data/25_Employee.vue";
import calender from "../2_data/26_Calendar.vue";
import insignia from "../2_data/27_Insignia.vue";
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 40px"
>
อการใชงานระบบขอมลหล
</div>
<div class="row col-12 q-gutter-xs">
<div
id="MainData"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<MainData />
</div>
<div
id="About"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<About />
</div>
<div
id="gov"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<gov />
</div>
<div
id="officer"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<officer />
</div>
<div
id="employee"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<employee />
</div>
<div
id="calender"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<calender />
</div>
<div
id="insignia"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<insignia />
</div>
</div>
</div>
</template>
<style scoped></style>

View file

@ -1,84 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบโครงสรางอตรากำล
</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอเขาสระบบทรพยากรบคคล ปรากฏหนาจอหนาแรกของระบบทรพยาการบคคล
ใหกดเลอกแถบเมน อมลหล งรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/1_main/3-1.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 392.06px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 1 เมนโครงสรางอตรากำล
</div>
</div>
<div
class="col-12"
style="margin-top: 50px; margin-left: 10px; align-items: center"
>
- ระบบปรากฏเมนอยของโครงสรางอตรากำล งรปภาพ
<q-img
src="@/assets/manual/03_structure/1_main/3-2.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 571.37px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 2 เมนอยของโครงสรางอตรากำล
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,418 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.1 ดการตำแหน
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล ดการตำแหน
ระบบแสดงหนาจอดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/2_position/3-3.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 3 หนาจดการตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
จากรปท 3 - 3 แตละหมายเลขมรายละเอยด งน <br />
<div style="margin-left: 50px">
หมายเลข 3 องคนหา เพอสบคนขอมลทองการ <br />
หมายเลข 4 คอลมน กดเลอกรายการเพอใหอมลทเลอกถกซอน
</div>
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ
โดยเลอกกดรายการจดการตำแหนงทองการจดการ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/2_position/3-4.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 4 แกไขขอมลจดการตำแหน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
จะสามารถกดเลอกรายการจดการตำแหนงเพอแกไขขอมลได
เมอกดเลอกรายการจดการตำแหน ระบบแสดงดงรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/2_position/3-5.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 5 แกไขขอมลทอย
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกขอมลตำแหนงประเภท <br />
หมายเลข 2 องสำหรบคลกเลอกขอมลตำแหน <br />
หมายเลข 3 องสำหรบคลกเลอกตำแหนงทางการบรหาร <br />
หมายเลข 4 องสำหรบคลกเลอกระด <br />
หมายเลข 5 องสำหรบคลกเลอกสายงาน <br />
หมายเลข 6 องสำหรบคลกเลอกดาน/สาขา <br />
หมายเลข 7 องสำหรบคลกเลอกดานทางการบรหาร <br />
หมายเลข 8 องสำหรบคลกเลอกสถานภาพของตำแหน <br />
หมายเลข 9 องสำหรบกรอกขอมลศกษาศาสตรบณฑ <br />
หมายเลข 10 องสำหรบกรอกขอมลเงอนไขตำแหน <br />
หมายเลข 11 องสำหรบกรอกขอมลหมายเหต <br />
หมายเลข 12 องสำหรบคลกเลอกเพอแสดงสถานะการเปนหวหนางาน <br />
หมายเลข 13 มบนท
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอแกไขขอมลเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกขอมลราง ระบบปรากฏปายนทกขอมลรางสำเร งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/2_position/3-6.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 6 าย นทกขอมลรางสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร
หลงจากคลกยนยนการแกไขขอม
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- เมอไมองแกไขหรอยกเลกแกไขใหกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอยกเลกแบบรางทแกไขลาสดระบบปรากฏปาย
องการลบขอมลบนทกรางนหรอไม? งรปภาพ
<q-img
class="col-12"
src="@/assets/manual/03_structure/2_position/3-7.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 7 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- เมอกดป ลบบนท ระบบปรากฏปาย ลบขอมลรางสำเร งรปภาพ
และเมอกดปยกเล ระบบจะไมทำการลบขอมลราง
<q-img
class="col-12"
src="@/assets/manual/03_structure/2_position/3-8.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 8 าย ลบขอมลรางสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ ลบขอมลรางสำเร
หลงจากททำการคลกยนยนการลบขอมลรางการจดตำแหน
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
<p>
- เมอแกไข และกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกขอมลรางใหกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอมลระบบจะขนปาย องการเผยแพรอมลนหรอไม?
งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/2_position/3-9.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 3 - 9 าย องการเผยแพรอมลนหรอไม?
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- เมอกดป เผยแพร ระบบปรากฏปาย เผยแพรอมลสำเร งรปภาพ
และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
<q-img
class="col-12"
src="@/assets/manual/03_structure/2_position/3-10.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 10 าย เผยแพรอมลสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ เผยแพรอมลสำเร
หลงจากททำการคลกยนยนการเผยแพรอมลจดการตำแหน
</div>
</div>
<div class="col-12" style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon name="mdi-plus" style="margin: 0 5px; color: #00aa86" size="xs" />
เพอเพมขอม ระบบจะปรากฏฟอรมเพอใหเพมขอมลดงรปภาพ
เมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง(อมลยงไมการเผยแพร)
เมอกดบนทกรางระบบจะแสดงดงรปภาพท 3 6
โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได
สามารถกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบบนทกรางเมอกดลบบนทกรางระบบจะแสดงดงรปภาพท 3 7 และ 3 8
และสามารถกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอมลระบบจะแสดงดงรปภาพท 3 9 และ 3 10
โดยในสวนการเผยแพรอมลนนผแลระบบ
การตรวจสอบความถกตองเรยบรอยแล
และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม เมอกดเลอกท วหน
ระบบปรากฏไอคอน
<q-icon
name="mdi-bookmark"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
กำก
<q-img
class="col-12"
src="@/assets/manual/03_structure/2_position/3-11.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 11 ฟอรมสรางโครงสรางและกรอบอตรากำล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกตำแหนงประเภท <br />
หมายเลข 2 องสำหรบคลกเลอกตำแหน <br />
หมายเลข 3 องสำหรบคลกเลอกตำแหนงทางการบรหาร <br />
หมายเลข 4 องสำหรบคลกเลอกระด <br />
หมายเลข 5 องสำหรบคลกสายงาน <br />
หมายเลข 6 องสำหรบคลกเลอกดาน/สาขา <br />
หมายเลข 7 องสำหรบคลกเลอกดนทางการบรหาร <br />
หมายเลข 8 องสำหรบคลกเลอกสถานภาพของตำแหน <br />
หมายเลข 9 องสำหรบกรอกรายละเอยกขอมลคณว <br />
หมายเลข 10 องสำหรบกรอกขอมลเงอนไขตำแหน <br />
หมายเลข 11 องสำหรบกรอกขอมลรายละเอยดหมายเหต <br />
หมายเลข 12 องสำหรบคลกเพอกำหนดการเปนหวหนางาน <br />
หมายเลข 13 มสำหรบคลกบนทกขอม
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,398 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบโครงสรางอตรากำล
</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.2 แผนภโครงสราง
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล แผนภโครงสราง
ระบบแสดงหนาจอดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/3_structure/3-12.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 12 หนาแผนภโครงสราง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ดาวนโหลดรปภาพเปนไฟล PNG <br />
หมายเลข 2 ดาวนโหลดไฟลเปนไฟล PDF <br />
หมายเลข 3 การเขาถงของแตละหวขอหล <br />
หมายเลข 4 รายละเอยดแผนภโครงสราง
โดยสามารถเขาถงแตละหวขอเพอใหแสดงขอม
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอตองการดอมลใหเลกลงสามารถกดเลอกแตละหวขอตางๆได
งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/3_structure/3-13.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 13 รายละเอยดโครงสราง
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดเลอกหวขอทองการ ระบบจะแสดงเฉพาะขอมลทเลอก
โดยจะมการบอกหวขอทการเขาถ งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/3_structure/3-14.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 14 รายละเอยดโครงสรางทแสดงเฉพาะขอมลททำการเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 คอลมนแสดงการเขาถงของแตละหน <br />
หมายเลข 2 องสำหรบแสดงรายละเอยดขอมลหนวยงานทไดทำการเขาถ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถกดไอคอน
<q-icon
name="mdi-image-area"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟล PNG โดยจะไดไฟลปภาพ งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/3_structure/3-15.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 15 ดาวนโหลดไฟล PNG
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอดาวนโหลดไฟลปภาพ PNG
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-16.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 16 ไฟล PNG ไดจากการดาวนโหลด
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG งรปภาพ - โดยสามารถคลกไอคอน
<q-icon
name="mdi-image-area"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟล PNG ในแตละหวขอทองการได
งรปภาพสามารถเขาถงหวขอทองการ เพอดาวนโหลดได
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-17.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 17 ดาวนโหลดไฟล PNG การเขาถงหวขอทองการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกดาวนโหลดไฟลภาพ PNG
(อมลเฉพาะทการเขาถงหนวยงานนนๆ)
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG
การเขาถงหวขอทองการ งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/3_structure/3-18.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 18 ไฟล PNG จากการดาวนโหลดทการเขาถงหวขอทองการ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถคลกไอคอน
<q-icon
name="mdi-file-pdf-box"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอดาวนโหลดไฟล PDF โดยจะไดไฟลปภาพ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-19.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 19 ดาวนโหลดไฟล PDF
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอดาวนโหลดไฟลปภาพเปนไฟลอม PDF
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-20.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 20 ไฟล PDF ไดจากการดาวนโหลด
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- โดยสามารถคลกไอคอน
<q-icon
name="mdi-file-pdf-box"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอดาวนโหลดไฟล PNG ในแตละหวขอทองการได
งรปภาพสามารถเขาถงหวขอทองการ เพอดาวนโหลดได
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-21.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 21 ดาวนโหลดไฟล PNG การเขาถงหวขอทองการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอดาวนโหลดรปภาพเปนไฟล PNG
(อมลเฉพาะทการเขาถงหนวยงานนนๆ)
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG
การเขาถงหวขอทองการ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/3_structure/3-22.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 22 ไฟล PNG จากการดาวนโหลดทการเขาถงหวขอทองการ
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,311 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.3 แผนภองคกร
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล แผนภองคกร
ระบบแสดงดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/4_organchart/3-23.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 23 หนาแผนภองคกร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ดาวนโหลดรปภาพเปนไฟล PNG <br />
หมายเลข 2 ดาวนโหลดไฟลเปนไฟล PDF <br />
หมายเลข 3 รายละเอยดแผนภโครงสราง
โดยสามารถเขาถงแตละหวขอเพอใหอมลทแสดงเปนขอมลเลกลง
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถกดเลอกไอคอน
<span class="circle-icon" style="margin-left: 10px">
<span
class="triangle"
style="border-top-width: 8px; transform: rotate(-90deg)"
>
</span>
</span>
ของแตละหวขอเมอตองการดอมลเพมเต งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/4_organchart/3-24.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 24 เลอกดอมลเพมเต
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<span class="circle-icon" style="margin-left: 10px">
<span
class="triangle"
style="border-top-width: 8px; transform: rotate(-90deg)"
>
</span>
</span>
ของแตละหวขอเมอตองการดอมลเพมเต ไอคอนจะเปลยนเป
<span class="circle-icon" style="margin-left: 10px">
<span
class="triangle"
style="border-top-width: 8px; transform: rotate(180deg)"
>
</span>
</span>
งรปภาพ และจะแสดงขอมลเพมเตมของหวขอทเลอก
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/4_organchart/3-25.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 25 เลอกดอมลเพมเตมของหวขอทเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงขอมลแผนภองคกรเมอมการกดคลกแสดงตำแหนงยอย
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถกดไอคอน
<q-icon
name="mdi-image-area"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟล PNG โดยจะไดไฟลปภาพ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/4_organchart/3-26.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 26 ดาวนโหลดไฟล PNG
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอดาวนโหลดรปภาพไฟล PNG <br />
หมายเลข 2 แถบการเขาถงไฟลปภาพทไดทำการดาวนโหลด
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/4_organchart/3-27.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 27 ไฟล PNG ไดจากการดาวนโหลด
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถคลกไอคอน
<q-icon
name="mdi-file-pdf-box"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอดาวนโหลดไฟล PDF โดยจะไดไฟลปภาพ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/4_organchart/3-28.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 28 ดาวนโหลดไฟล PDF
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอดาวนโหลดรปภาพเปนไฟลอม PDF <br />
หมายเลข 2 แถบการเขาถงขอมลไฟลปภาพทไดทำการดาวนโหลด
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ไฟลปภาพทไดจากการดาวนโหลดไฟล PNG งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/4_organchart/3-29.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 29 ไฟล PDF ไดจากการดาวนโหลด
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style scoped>
.circle-icon {
width: 20px;
height: 20px;
background-color: #efefef;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 10px;
vertical-align: middle;
}
.triangle {
width: 0;
height: 0;
border-left: 5px solid transparent; /* ปรับความกว้างลง */
border-right: 5px solid transparent; /* ปรับความกว้างลง */
border-bottom: 5px solid #000000; /* ปรับความสูงลง */
}
</style>

View file

@ -1,686 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.4 งโครงสราง
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล แผนภองคกร
ระบบแสดงหนาจอดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/5_chartstru/3-30.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 30 หนาผงโครงสราง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบเมนเพ ลบหรอแกไขขอม <br />
หมายเลข 2 อมลประวแกไขผงโครงสราง <br />
หมายเลข 3 รายละเอยดผงโครงสรางของหนวยงาน <br />
หมายเลข 4 นเดอนปและเวลาทเผยแพรอมลโครงสราง <br />
หมายเลข 5 องคนหาขอมลผงโครงสราง
</div>
</div>
<div class="col-12">
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- กดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
เพอเพ ลบหรอแกไขขอม ระบบแสดงดงรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/5_chartstru/3-31.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 31 เพ ลบหรอแกไขขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนดนสอสำหรบคลกเพอแกไขขอมลหนวยงาน
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมขอม ระบบจะปรากฏหนาจอดงรปภาพ จากนนใหกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมหนวยงานภายใตหนวยงานกรงเทพมหานคร
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/5_chartstru/3-33.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 33 เพมหนวยงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกเพอเพมขอมลของหนวยงานภายใตหนวยงานกรงเทพมหานคร
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมหนวยงาน ระบบจะปรากฏชองเพอใหเพมขอมลหนวยงาน งรปภาพ
เมอกรอกเพอเพมขอมลเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง (อมลยงไมการเผยแพร)
โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนได
สามารถกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบบนทกราง และสามารถกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอม
โดยในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล
และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-34.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 34 เพมขอมลหนวยงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกหนวยงาน <br />
หมายเลข 2 องสำหรบคลกเลอกรหสหนวยงาน <br />
หมายเลข 3 องสำหรบคลกเลอกรหสสวนราชการ <br />
หมายเลข 4 องสำหรบแสดงชอยอหนวยงาน <br />
หมายเลข 5 องสำหรบกรอกเลขทหนวยงาน <br />
หมายเลข 6 องสำหรบกรอกเลขทวนราชการ <br />
หมายเลข 7 องสำหรบกรอกเลขทาย/วน <br />
หมายเลข 8 องสำหรบกรอกเลขทกอง <br />
หมายเลข 9 องสำหรบคลกเลอกประเภทหนวยงาน <br />
หมายเลข 10 องสำหรบคลกเลอกระดบหนวยงาน <br />
หมายเลข 11 องสำหรบคลกเลอกหนวยงานตนสงก <br />
หมายเลข 12 องสำหรบคลกเลอกสวนราชการตนสงก <br />
หมายเลข 13 องสำหรบกรอกขอมลลำดบผงโครงสราง <br />
หมายเลข 14 องสำหรบคลกเลอกหมายเลขโทรศพทดตอจากภายนอก <br />
หมายเลข 15 องสำหรบคลกเลอกหมายเลขโทรศพทดตอจากภายใน <br />
หมายเลข 16 องสำหรบคลกเลอกหมายเลขโทรสาร <br />
หมายเลข 17 องสำหรบกรอกขอมลรายละเอยดหนาทบผดชอบ <br />
หมายเลข 18 มสำหรบคลกเพอบนทกขอม
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกรอกขอมลเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกราง(อมลยงไมการเผยแพร)ระบบแสดงปาย
นทกขอมลรางสำเร งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-35.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 35 าย นทกขอมลรางสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแสดงสถานะ นทกขอมลรางสำเร
หลงจากทกดบนทกขอมลเพมหนวยงานภายใตหนวยงานกรงเทพมหานคร
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอมลระบบปรากฏปาย องการเผยแพรอมลนหรอไม?
งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-36.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 36 าย องการเผยแพรอมลนหรอไม?
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดป เผยแพร ระบบปรากฏปายเผยแพรอมลสำเร งรปภาพ
และเมอกดปยกเล ระบบจะไมทำการเผยแพรอม
โดยมายตองการโหลดขอมลใหมนมาเพอสอบถามความตองการ ใหกดป
ตกลง เมอตองการอปโหลดขอมลใหม และป ยกเล
เมอไมองการอปโหลดขอม
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-37.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 37 าย เผยแพรอมลสำเร
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอตองการลบหนวยงานใหกดไอคอน
<q-icon
name="mdi-trash-can-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
ระบบปรากฏปาย นยนลบหนวยงาน งร
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-38.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 38 าย นยนลบหนวยงาน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดป ตกลง ระบบปรากฏปาย ลบขอมลสำเร งรปภาพ
และเมอกดปยกเล ระบบจะไมทำการเผยแพรอมลและใหกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรอมลอกคร
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-39.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 39 าย ลบขอมลสำเร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ระบบแจงเตอนสถานะ ลบขอมลสำเร
หลงจากททำการกดคลกยนยนเพอลบขอมลหนวยงานภายใตหนวยงานกรงเทพมหานคร
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอมการเพมหรอแกไข สามารถกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบบนทกรางขอมลทการเพมหรอแก-ไขไดงรปภาพ หากกดป
ลบบนท จะปรากฏปายเตอนบรเวณมมขวาลาง ลบขอมลรางสำเร
และเมอกดป ยกเล ระบบจะไมทำการลบขอมลราง
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-40.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 40 าย องการลบขอมลบนทกรางนหรอไม?
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถเลอกกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมขอมลหนวยงานและตำแหน งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-41.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 41 เพมหนวยงานและตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบเพมขอมลหนวยงานหรอตำแหนงภายใตสำนกงานการคล
<br />
หมายเลข 2 มสำหรบเพมขอมลหนวยงานหรอตำแหนงภายใตกองคล
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอเลอกกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเพมขอมลหนวยงานและตำแหน
โดยจะมอมลกำกบวาเพมโครงสรางอตรากำลงภายใตหนวยงานใด งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-42.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 42 เพมขอมลหนวยงานและตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบแสดงชอสำนกงานททำงานเพมขอมลหนวยงานและตำแหน <br />
หมายเลข 2 มสำหรบคลกเพอเพมขอมลหนวยงาน <br />
หมายเลข 3 มสำหรบคลกเพอเพมขอมลตำแหน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพมหนวยงานและตำแหน ระบบปรากฎดงรปภาพ เพอกรอกขอมลหนวย
งานสำหรบการกรอกขอมลหนวยงานสามารถดไดตามรายละเอยดในรปภาพ 3 34
และกรอกขอมลตำแหนงในรปภาพท 3 44 เมอกรอกเรยบรอยแลวใหกดไอคอน
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอบนทกขอมลราง
โดยการบนทกเฉพาะขอมลรางนนจะมเพยงผแลระบบเทานนทเหนไดเมอตองการลบขอมลรางใหกดไอคอน
<q-icon
name="mdi-file-remove-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
และเมอตองการเผยแพรใหกดไอคอน
<q-icon
name="mdi-cloud-upload-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอเผยแพรไปหนาอ
ในสวนการเผยแพรอมลนนผแลระบบมการตรวจสอบความถกตองเรยบรอยแล
และไดทำการเผยแพรใหเจาหนาทกคนเหนขอม
และเมอไมองการเพมหนวยงานหรอตำแหนงสามารถกดไอคอน
<q-icon
name="mdi-trash-can-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบชองทปรากฏใหเพมหนวยงานหรอตำแหน
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-43.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 43 เพมขอมลหนวยงาน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px"></p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-44.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 44 เพมขอมลตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกตำแหนงงาน <br />
หมายเลข 2 องสำหรบคลกเพ/ลดจำนวนหรอกรอกจำนวนตวเลข <br />
หมายเลข 3 องสำหรบกรอกขอมลรายละเอยดหมายเหต <br />
หมายเลข 4 องสำหรบคลกเลอกขอมลปกตหรอตดเงอนไข <br />
หมายเลข 5 องสำหรบกรอกรายละเอยดเงอนไข <br />
หมายเลข 6 มสำหรบคลกเพอบนทกขอมลรางเพมตำแหน <br />
หมายเลข 7 มสำหรบคลกเพอลบขอมลรางการเพมตำแหน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถเลอกกดไอคอน
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
เพอแกไขขอม และสามารถเลอกกดไอคอน
<q-icon
name="mdi-trash-can-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบขอมลดงรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/5_chartstru/3-45.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 45 แกไขและลบขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอทำการแกไขรายละเอยดขอมลหนวยงาน <br />
หมายเลข 2 ไอคอนสำหรบคลกเพอทำการลบขอมลหนวยงาน
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,345 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.5 ดการบญช 2
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล แผนภองคกร
ระบบแสดงหนาจอดงร
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/6_account2/3-46.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 46 หนาผงโครงสราง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบเมนหนวยงานหรอสำนกงาน <br />
หมายเลข 2 ไอคอนซอนแถบเมนหนวยงานหรอสำนกงาน <br />
หมายเลข 3 การยนยนออกคำส <br />
หมายเลข 4 ประวญชดขาราชการกรงเทพฯสามญเขาตำแหนงประเภท สายงาน
และระดบตำแหน <br />
หมายเลข 5 อมลรายละเอยดจดการบญช2 กรณไม -นามสก
เลขทตำแหนงนนยงไมการถอครองหรอวาง <br />
หมายเลข 6 องคนหา เพอสบคนขอมลทองการ <br />
หมายเลข 7 คอลมน กดเลอกรายการเพอใหอมลทเลอกถกซอน
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถกดเลอกแถบเมนหนวยงานหรอสำนกงาน
ระบบจะแสดงรายละเอยดเฉพาะทเลอกดงรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/6_account2/3-47.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 47 รายละเอยดทไดทำการเลอก
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถกดเลอกไอคอน
<span class="circle-icon" style="margin-left: 10px">
<span
style="
font-weight: bold;
font-size: 10px;
display: inline-flex; /* เพื่อให้สามารถใช้ transform ได้ */
transform: rotate(180deg); /* หมุน 90 องศาทางขวา */
"
>
>
</span>
</span>
แถบเมนหนวยงานหรอสำนกงานจะถกซอน งรปภาพ
และเมอตองการใหแสดงเหมอนเดมใหกดไอคอน
<span class="circle-icon" style="margin-left: 10px">
<span
style="
font-weight: bold;
font-size: 10px;
display: inline-flex; /* เพื่อให้สามารถใช้ transform ได้ */
transform: rotate(0deg); /* หมุน 90 องศาทางขวา */
"
>
>
</span>
</span>
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/6_account2/3-48.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 48 อนแถบเมนหนวยงานหรอสำนกงาน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px; display: flex">
- สามารถคลกไอคอน
<span
class="q-btn__content text-center col items-center q-anchor--skip justify-center row"
>
<i
class="q-icon notranslate material-icons"
aria-hidden="true"
role="img"
>assignment_turned_in</i
>
</span>
เพอเพมขอมลหนวยงานและตำแหน งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/6_account2/3-49.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 49 ออกคำส
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอกดป นย จะปรากฏปายเตอนบรเวณมมขวาลางดงรปภาพ
และเมอกดปยกเล ระบบจะไมทำการยนยนเพอเอาไปออกคำส
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/6_account2/3-50.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 50 าย นยนเพอเอาไปออกคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบเมนหนวยงานหรอสำนกงาน <br />
หมายเลข 2 ไอคอนซอนแถบเมนหนวยงานหรอสำนกงาน <br />
หมายเลข 3 การยนยนออกคำส <br />
หมายเลข 4 ประวญชดขาราชการกรงเทพฯสามญเขาตำแหนงประเภท สายงาน
และระดบตำแหน <br />
หมายเลข 5 อมลรายละเอยดจดการบญช2 กรณไม -นามสก
เลขทตำแหนงนนยงไมการถอครองหรอวาง <br />
หมายเลข 6 องคนหา เพอสบคนขอมลทองการ <br />
หมายเลข 7 คอลมน กดเลอกรายการเพอใหอมลทเลอกถกซอน
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- สามารถคลกไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดประวญชดการขาราชการกรงเทพฯ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/6_account2/3-51.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 51 อนแถบเมนหนวยงานหรอสำนกงาน
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- สามารถสบคนขอมลทองคนหา
และทองคอลมนสามารถเลอกรายการทองการซอนไดงรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/6_account2/3-52.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 52 รายละเอยดทไดทำการเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบกรอกเพอคนหาขอมลจดการบญชองการรายละเอยดขอม
<br />
หมายเลข 2
องสำหรบคลกเลอกหวคอลมแสดงตารางขอมลตามทไดทำการคลกเลอกคอมลมนแสดงขอมลไว
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>
<style scoped>
.circle-icon {
width: 20px;
height: 20px;
background-color: hwb(0 100% 0%);
border: 1px solid hwb(0 86% 14% / 0.611);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 10px;
vertical-align: middle;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* เพิ่มเงา */
}
.col,
.col-xs {
flex: 0 0 5%;
color: #00aa86;
font-size: 20px;
}
</style>

View file

@ -1,390 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.6 รายงานบญช
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- กดเลอกแถบเมนอยของโครงสรางอตรากำล รายงานบญช ระบบแสดงดงรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/7_report/3-53.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 53 หนารายงานบญช
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบบญช <br />
หมายเลข 2 เลอกรายการหนวยงานหรอสวนราชการทองการออกรายงาน <br />
หมายเลข 3 ดาวนโหลดรายงาน
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- กดเลอกบญช 1 เพอออกรายงานหนวยงาน งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/7_report/3-54.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 54 เลอกหนวยงานเพอออกรายงาน
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- เมอเลอกหนวยงานทองการออกรายงานไดแลวใหกดไอคอน
<q-icon
name="mdi-download"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟลโดยไฟลไดจะเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-55.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 55 กดดาวนโหลดไฟล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอดาวนโหลดไฟลอมลรายงานนบญช
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- โดยจะไดรายงานเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-56.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 56 ไฟลรายงานบญชของหนวยงานทเลอก
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- กดเลอกบญช2 เพอออกรายงานสวนราชการ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-57.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 57 เลอกสวนราชการเพอออกรายงาน
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- เมอเลอกหนวยงานทองการออกรายงานไดแลวใหกดไอคอน
<q-icon
name="mdi-download"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟลโดยไฟลไดจะเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-58.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 58 กดดาวนโหลดไฟล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอดาวนโหลดไฟลอมลรายงานนบญช 2
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- โดยจะไดรายงานเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-59.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 59 ไฟลรายงานบญชของสวนราชการทเลอก
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- กดเลอกบญช 3 เพอออกรายงานสวนราชการ งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-60.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 60 เลอกสวนราชการเพอออกรายงาน
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- เมอเลอกหนวยงานทองการออกรายงานไดแลวใหกดไอคอน
<q-icon
name="mdi-download"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดไฟลโดยไฟลไดจะเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-61.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 61 กดดาวนโหลดไฟล
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอดาวนโหลดไฟลอมลรายงานนบญช 3
</div>
</div>
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
justify-content: flex-start;
align-items: center;
"
>
- โดยจะไดรายงานเปนไฟล PDF งรปภาพ
</p>
<q-img
class="col-12"
src="@/assets/manual/03_structure/7_report/3-62.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 - 62 ไฟลรายงานบญชของสวนราชการทเลอก
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,265 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">ระบบโครงสรางอตรากำล</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
3.7 งโครงสรางลกจาง
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px"></div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/8_chartemploy/3-63.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 63 หนาผงโครงสรางลกจาง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 รายการผงโครงสรางลกจาง <br />
หมายเลข 2 ไอคอนบวก เพอสรางโครงสรางและกรอบอตรกำล <br />
หมายเลข 3 องคนหา เพอสบคนขอมลทองการ <br />
หมายเลข 4 คอลมน กดเลอกรายการเพอใหอมลทเลอกถกซอน <br />
หมายเลข 5 ไอคอนถงขยะ สามารถคลกเพอลบรายการผงโครงสรางลกจาง
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอตองการสรางโครงสรางและกรอบอตรากำล ใหคลกไอคอน
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
ระบบแสดงกลองเพอใหกรอบขอมลดงร
เมอกรอกขอมลเรยบรอยแลวใหกดไอคอนบนทกขอม
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/8_chartemploy/3-64.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 64 กรอกขอมลโครงสรางหนวยงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบเลอกหนวยงาน <br />
หมายเลข 2 องสำหรบเลอกรหสหนวยงาน <br />
หมายเลข 3 องสำหรบเลอกรหสสวนราชการ <br />
หมายเลข 4 องสำหรบชอยอหนวยงาน <br />
หมายเลข 5 องสำหรบกรอกเลขทหนวยงาน <br />
หมายเลข 6 องสำหรบกรอกเลขทวนราชการ <br />
หมายเลข 7 องสำหรบกรอกเลขทาย/วน <br />
หมายเลข 8 องสำหรบกรอกเลขทกอง <br />
หมายเลข 9 องสำหรบเลอกประเภทหนวยงาน <br />
หมายเลข 10 องสำหรบเลอกระดบหนวยงาน <br />
หมายเลข 11 องสำหรบเลอกหนวยงานตนสงก <br />
หมายเลข 12 องสำหรบเลอกหนวยราชการตนสงก <br />
หมายเลข 13 องสำหรบเลอกลำดบผงโครงสราง <br />
หมายเลข 14 องสำหรบเลอกหมายเลขโทรศพทดตอจากภายนอก <br />
หมายเลข 15 องสำหรบเลอกหมายเลขโทรศพทดตอจากภายใน <br />
หมายเลข 16 องสำหรบเลอกหมายเลขโทรสาร <br />
หมายเลข 17 องสำหรบเลอกกรอกหนาทบผดชอบ
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px"></p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/8_chartemploy/3-65.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 65 กรอกขอมลโครงสรางตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบเลอกสายงาน <br />
หมายเลข 2 องสำหรบเลอกตำแหน <br />
หมายเลข 3 องสำหรบเลอกดาน/สาขา <br />
หมายเลข 4 องสำหรบเลอกระด <br />
หมายเลข 5 องสำหรบเลอกสถานภาพของตำแหน <br />
หมายเลข 6 องสำหรบเลอกเลขทตำแหน <br />
หมายเลข 7 องสำหรบกรอกคณว <br />
หมายเลข 8 องสำหรบกรอกเงอนไขตำแหน <br />
หมายเลข 9 องสำหรบกรอกหมายเหต <br />
หมายเลข 10 องสำหรบเลอหวหน
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px"></p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/8_chartemploy/3-66.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 66 กรอกขอมลโครงสรางตำแหน()
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 กดเลอกปกตหรอตดเงอนไข <br />
หมายเลข 2 องสำหรบกรอกรายละเอยดเงอนไข <br />
หมายเลข 3 มบนท
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- เมอตองแกไขโครงสรางและกรอบอตรากำล
ใหคลกเลอกรายการผงโครงสรางลกจาง
ระบบแสดงกลองเพอใหแกไขขอมลดงร
เมอแกไขขอมลเรยบรอยแลวใหกดไอคอน นทกขอม
โดยสามารถดรายละเอยดตามรปท 3 64, 3 65 และ3 - 66
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/03_structure/8_chartemploy/3-67.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 3 67 แกไขขอมลโครงสรางตำแหน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 กดเลอกปกตหรอตดเงอนไข <br />
หมายเลข 2 องสำหรบกรอกรายละเอยดเงอนไข <br />
หมายเลข 3 มบนท
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,88 +0,0 @@
<script setup lang="ts">
import structuremain from "./31_Main.vue";
import position from "./32_Position.vue";
import structure from "./33_Structure.vue";
import organchart from "./34_organchart.vue";
import chartstru from "./35_chartstru.vue";
import account2 from "./36_account2.vue";
import report from "./37_report.vue";
import chartemploy from "./38_chartemploy.vue";
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 40px"
>
อการใชงานระบบโครงสรางอตรากำล
</div>
<div class="row col-12 q-gutter-xs">
<div
id="structuremain"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<structuremain />
</div>
<div
id="position"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<position />
</div>
<div
id="structure"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<structure />
</div>
<div
id="organchart"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<organchart />
</div>
<div
id="chartstru"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<chartstru />
</div>
<div
id="account2"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<account2 />
</div>
<div
id="report"
name="7"
class="row col-12 information"
style="padding-bottom: 60px"
>
<report />
</div>
<div
id="chartemploy"
name="8"
class="row col-12 information"
style="padding-bottom: 60px"
>
<chartemploy />
</div>
</div>
</div>
</template>
<style scoped></style>

View file

@ -1,129 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!--
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
4.1 การเขาสหนาระบบทะเบยนประว
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอตองการดอมลประวของขาราชการกรงเทพมหานครใหทำการคลกแถบเมน ทะเบยนประว ทางดานซายของระบบ งร
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/1_main/4-1.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 307.73px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 1 แสดงการเลอกแถบเมน หนาระบบทะเบยนประว ของขอมลขาราชการกรงเทพฯ
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบแสดงหนาตาง อมลทะเบยนประว งร
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/1_main/4-2.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 2 แสดงหนาตางขอมลทะเบยนประว
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 วขอเมนสำหรบเลอกหนวยงานกรงเทพฯ องการขอมลทะเบยนประว <br>
หมายเลข 2 องสำหรบการเลอกประเภทขอมลลกจางทองการขอม <br>
หมายเลข 3 องสำหรบการกรอกจำนวนตวเลขของเลขบตรประจำตวประชาชน <br>
หมายเลข 4 องสำหรบกรอก -นามสกลของลกจางทองการคนหา <br>
หมายเลข 5 องสำหรบเลอกปเกษยณทองการขอม <br>
หมายเลข 6 องสำหรบเลอกหวขอคอลมนองการใหตารางแสดงขอมลตามคอลมนเลอก <br>
หมายเลข 7 องสำหรบเลอกหรอกรอกขอมลอายราชการ <br>
หมายเลข 8 มสำหรบคลกเพอแสดงขอมลผนจากราชการ <br>
หมายเลข 9 มสำหรบแสดดงขอมลลกจางททดลองปฏหนาทราชการ <br>
หมายเลข 10 มสำหรบคลกคนหาหลงจากทำการกรอกขอม หรอเลอกประเภทขอมลทองการ <br>
หมายเลข 11 องสำหรบแสดงขอมลทะเบยนประวรายช
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,530 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
4.2 การคนหาขอมลทะเบยนประว
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
<p>
- เมอเขาสหน ทะเบยนประว สามารถทำการคนหารายชอขอมลตางๆ
ไดจากการคลกเมาสเลอกประเภทขอมลของลกจาง งในร
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-3.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 3 แสดงชองเลอกประเภทลกจาง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกประเภทลกจางทองการขอม
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกเลอกประเภทขอมลลกจางทองการขอม
และทำการใชเมาสคลกปมคนหา
จากนนระบบจะแสดงขอมลรายชอประวทะเบยนตามประเภทลกจางททำการเลอก
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-4.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 4 แสดงการเลอกประเภทขอมลทะเบยนของลกจาง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกเมนอยประเภทของลกจางทองการขอม
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกชอง เลขประจำตวประชาชน
แลวกรอกเลขบตรประจำตวประชาชนทองการคนหาขอมลทะเบยนประว
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-5.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 5 แสดงชองกรอกเลขประจำตวประชาชน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลเลขบตรประจำตวประชาชนเพอคนหา
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกป นหา
ระบบแสดงขอมลตรงตามเลขประจำตวประชาชนทกรอก
และหากตองการคนหาขอมลอนเพมใหทำการใชเมาสคลกในชอง
เลขประจำตวประชาชน เพอลบขอมลเกาออก และทำการกรอกขอมลใหมลงไป
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-6.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 6 แสดงการกรอกเลขบตรประจำตวประชาชนเพอคนหา
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกหมายเลขประจำตวประชาชนทองการคนหา <br />
หมายเลข 2 องสำหรบแสดงผลการคนหาโดยการกรอกหมายเลขประจำตวประชาชน
</div>
</div>
<div class="col-12">
<div class="col-12">
<div
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
align-items: center;
"
>
- สามารถกดเลอกไอคอน
<i
class="q-icon mdi mdi-close"
style="
color: white;
background-color: #d1d1d1;
margin-right: 10px;
margin-left: 10px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
ในชอง -นามสก เพอลบขอมลเกาออก และทำการกรอกขอมลใหมลงไป
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-7.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 7 แสดงการกรอกช-นามสกลเพอคนหา
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกช-นามสกลทองการคนหา <br />
หมายเลข 2 องสำหรบแสดงผลการคนหาโดยการกรอกช-นามสก
</div>
</div>
</div>
<div class="col-12">
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกชอง เกษยณ
และทำการกรอกหรอเลอกปเกษยณของผองการขอมลทะเบยนประว
และทำการคลกป นหา ระบบแสดงขอมลตรงตามปเกษยณทเลอก
และหากตองการคนหาขอมลเพมใหทำการใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: white;
background-color: #d1d1d1;
margin-right: 10px;
margin-left: 10px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
ในชอง เกษยณ เพอลบขอมลเกาออก
และทำการเลอกขอมลปเกษยณใหมลงไป
</div>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-8.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 8 แสดงการเลอกและกรอกขอมลปเกษยณเพอคนหา
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกปเกษยณทองการคนหา <br />
หมายเลข 2 องสำหรบแสดงรายชอปเกษยณททำการคลกเลอกคนหา
</div>
</div>
<div class="col-12">
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกชอง อายราชการ
และทำการกรอกหรอใชเมาสคลกลกศรขนเพอเพมตวเลขจำนวนปของผองการขอมลทะเบยนประว
และทำการคลกป นหา ระบบแสดงขอมลรายชอตรงตามปเกษยณตามทกรอก
และหากตองการคนหาขอมลอนเพมใหทำการใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: white;
background-color: #d1d1d1;
margin-right: 10px;
margin-left: 10px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
ในชอง เกษยณ เพอลบขอมลเกาออก และทำการกรอกขอมลใหมลงไป
</div>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-9.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 9 แสดงการกรอกหรอคลกเพมตวเลขของปอายราชการเพอคนหา
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกอายราชการเพอทำการคนหารายชอทองการ
<br />
หมายเลข 2 องสำหรบแสดงขอมลรายชอทอายราชการตรงตามทกรอกคนหา
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ทำการใชเมาสคลกชอง คอลมน
เพอทำการเลอกหวขอคอลมนแสดงขอมลทองการ
หากตองการใหตารางแสดงขอมลเพยง -สก, ตำแหน,
ตำแหนงทางการบรหาร, เงนเดอน
ใหใชเมาสทำการคลกหวขอคอลมนเหลอใหกลายเปนสดำ
และหวขอทองการใหแสดงหรอหวขอคอลมนเลอกจะเปนสเขยว
งในร
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-10.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 10 แสดงการเลอกหวขอคอลมนองใหแสดง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
เมนอยของชองคอลมนสามารถทำการคลกเลอกรายชอคอลมนสำหรบการแสดงขอม
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
ระบบแสดงตารางแสดงรายชอขอมลมลทะเบยนประวตามหวขอคอลมนทำการเลอก
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-11.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 11 แสดงรายชอขอมลทะเบยนประวตามหวขอคอลมนเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงผลคอลมนทำการเลอกเพอแสดงขอม
</div>
</div>
<div class="col-12">
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px; display: inline-block">
- ทำการใชเมาสคลกป
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--falsy"
aria-hidden="true"
style="
font-size: 24px;
display: inline-block;
padding: 0 0.3em !important ;
height: 0.45em;
"
>
<div class="q-toggle__track"></div>
<div
class="q-toggle__thumb absolute flex flex-center no-wrap"
style="top: -0.07em"
></div>
</div>
ใหกลายเป
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive"
aria-hidden="true"
style="
font-size: 24px;
display: inline-block;
padding: 0 0.3em !important ;
height: 0.45em;
"
>
<div
class="q-toggle__thumb absolute flex flex-center no-wrap"
style="top: -0.07em"
></div>
<div class="q-toggle__track"></div>
</div>
ในชอง แสดงขอมลผนจากราชการ
เพอแสดงขอมลรายชอทะเบยนประวนจากราชการ
จากนนใชเมาสคลกป นหา
</div>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/2_find/4-12.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 12 แสดงรายชอขอมลผนจากราชการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกเพอดอมลผนจากราชการ <br />
หมายเลข 2 องสำหรบแสดงขอมลรายชอผนจากราชการ
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,483 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
4.3 การดรายละเอยดขอมลทะเบยนประว
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
<p>
- เมอเขาสหนาทะเบยนประว
ใหใชเมาสทำการคลกขอมลรายชอรายชอทองการดรายละเอยด
ระบบจะแสดงขอมลตามหวขอยอยตามตารางขอมลสวนต งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-13.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 13 แสดงหนาตางทะเบยนประว อมลสวนต
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอทำการแกไขรายละเอยดขอมลสวนต <br />
หมายเลข 2 มสำหรบคลกเพอกรอกขอมลออกจากราชการ <br />
หมายเลข 3 มสำหรบคลกเพอดประวอมลสวนต <br />
หมายเลข 4 มสำหรบคลกเพอดาวนโหลดไฟล
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลราชการ งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-14.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 14 แสดงหนาตางทะเบยนประว อมลราชการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอทำการแกไขรายละเอยดขอมลราชการ <br />
หมายเลข 2 มสำหรบคลกเพอดประวอมลราชการ
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลทอย งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-15.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 15 แสดงหนาตางทะเบยนประว อมลทอย
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอทำการแกไขรายละเอยดขอมลทอย <br />
หมายเลข 2 มสำหรบคลกเพอดประวอมลทอย
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลครอบคร งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-16.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 16 แสดงหนาตางทะเบยนประว อมลครอบคร
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอทำการแกไขรายละเอยดขอมลครอบคร <br />
หมายเลข 2 มสำหรบคลกเพอดประวอมลครอบคร
</div>
</div>
<div class="col-12">
<div class="col-12">
<p
style="
margin-top: 50px;
margin-left: 10px;
display: flex;
align-items: center;
"
>
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลใบอนญาตประกอบอาช,
ประวการศกษาและการฝกอบรม/งาน งรปภาพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-17.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 17 แสดงหนาตางทะเบยนประวอมลใบอนญาตประกอบอาช
ประวการศกษา การอบรม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลใบอนญาตประกอบอาช
<br />
หมายเลข 2 องสำหรบแสดงขอมลใบอนญาตประกอบอาช <br />
หมายเลข 3 องสำหรบกรอกขอมลเพอคนหาใบประกอบอาช <br />
หมายเลข 4 องสำหรบเลอกหวขอคอลมนแสดงขอมลใบประกอบอาช <br />
หมายเลข 5
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลประวการศกษา
<br />
หมายเลข 6 องสำหรบแสดงขอมลประวการศกษา <br />
หมายเลข 7 องสำหรบกรอกขอมลเพอคนหาประวการศกษา <br />
หมายเลข 8 องสำหรบเลอกหวขอคอลมนแสดงขอมลประวการศกษา <br />
หมายเลข 9
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลการฝกอบรมดงาน
<br />
หมายเลข 10 องสำหรบแสดงขอมลการฝกอบรมดงาน <br />
หมายเลข 11 องสำหรบกรอกขอมลเพอคนหาการฝกอบรมดงาน <br />
หมายเลข 12 องสำหรบเลอกหวขอคอลมนแสดงขอมลการฝกอบรมดงาน
</div>
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลเครองราชอสรยาภรณ,
ประกาศเกยรตณและผลการประเมนการปฏราชการ งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-18.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 18 แสดงหนาตางทะเบยนประวอมลเครองราชฯ
ประกาศเกยรต ผลการประเม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลเครองราชอสรยาภรณ
<br />
หมายเลข 2 องสำหรบแสดงขอมลเครองราชอสรยาภรณ <br />
หมายเลข 3 องสำหรบกรอกขอมลเพอคนหาเครองราชอสรยาภรณ <br />
หมายเลข 4 องสำหรบเลอกหวขอคอลมนแสดงขอมลเครองราชอสรยาภรณ
<br />
หมายเลข 5
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลประกาศเกยรต
<br />
หมายเลข 6 องสำหรบแสดงขอมลประกาศเกยรต <br />
หมายเลข 7 องสำหรบกรอกขอมลเพอคนหาประกาศเกยรต <br />
หมายเลข 8 องสำหรบเลอกหวขอคอลมนแสดงขอมลประกาศเกยรต <br />
หมายเลข 9
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลผลการประเมนการปฏราชการ
<br />
หมายเลข 10 องสำหรบแสดงขอมลผลการประเมนการปฏราชการ <br />
หมายเลข 11 องสำหรบกรอกขอมลเพอคนหาผลการประเมนการปฏราชการ
<br />
หมายเลข 12
องสำหรบเลอกหวขอคอลมนแสดงขอมลผลการประเมนการปฏราชการ
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลตำแหนงเงนเดอน,
ยและการลา งรปรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-19.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 19 แสดงหนาตางทะเบยนประวอมลตำแหนงเงนเดอน,
ยและการลา
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลตำแหนงเงนเดอน
<br />
หมายเลข 2 องสำหรบแสดงขอมลตำแหนงเงนเดอน <br />
หมายเลข 3 องสำหรบกรอกขอมลเพอคนหาขอมลตำแหนงเงนเดอน <br />
หมายเลข 4 องสำหรบเลอกหวขอคอลมนแสดงขอมลตำแหนงเงนเดอน <br />
หมายเลข 5 มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลว
<br />
หมายเลข 6 องสำหรบแสดงขอมลว <br />
หมายเลข 7 องสำหรบกรอกขอมลเพอคนหาขอมลเกยวกบว <br />
หมายเลข 8 องสำหรบเลอกหวขอคอลมนแสดงขอมลว <br />
หมายเลข 9 มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลการลา
<br />
หมายเลข 10 มสำหรบแสดงขอมลสรปวนลา <br />
หมายเลข 11 องสำหรบแสดงขอมลการลา <br />
หมายเลข 12 องสำหรบกรอกขอมลเพอคนหาขอมลการลา <br />
หมายเลข 13 องสำหรบเลอกหวขอคอลมนแสดงขอมลการลา
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลความสามารถพเศษ,
ปฏราชการพเศษและวนทไดปฏหนาทอยในเขตทไดประกาศใชยการศ
งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-20.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 20 แสดงหนาตางทะเบยนประวอมลความสามารถพเศษ,
ปฏราชการพเศษฯ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลความสามารถพเศษ
<br />
หมายเลข 2 องสำหรบแสดงขอมลความสามารถพเศษ <br />
หมายเลข 3 องสำหรบกรอกขอมลเพอคนหาความสามารถพเศษ <br />
หมายเลข 4 องสำหรบเลอกหวขอคอลมนแสดงขอมลความสามารถพเศษ <br />
หมายเลข 5
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลปฏราชการพเศษ
<br />
หมายเลข 6 องสำหรบแสดงขอมลปฏราชการพเศษ <br />
หมายเลข 7 องสำหรบกรอกขอมลเพอคนหาปฏราชการพเศษ <br />
หมายเลข 8 องสำหรบเลอกหวขอคอลมนแสดงขอมลปฏราชการพเศษ
<br />
หมายเลข 9
มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลผลการประเมนการปฏราชการ
<br />
หมายเลข 10
องสำหรบแสดงขอมลวนทไดปฏหนาทอยในเขตทไดประกาศใชยการศ
<br />
หมายเลข 11
องสำหรบกรอกขอมลเพอคนหาขอมลวนทไดปฏหนาทอยในเขตทไดประกาศใชยการศ
<br />
หมายเลข 12
องสำหรบเลอกหวขอคอลมนแสดงขอมลวนทไดปฏหนาทอยในเขตทไดประกาศใชยการศ
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ระบบจะแสดงขอมลตามหวขอยอยตารางขอมลอนๆ และเอกสารหลกฐาน
งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/3_detail/4-21.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 21 แสดงหนาตางทะเบยนประวอมลอนๆ และเอกสารหลกฐาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หหมายเลข 1 มสำหรบคลกเพอทำการเพมหรอแกไขรายละเอยดขอมลอนๆ
<br />
หมายเลข 2 องสำหรบแสดงขอมลอนๆ <br />
หมายเลข 3 องสำหรบกรอกขอมลเพอคนหาขอมลอนๆ <br />
หมายเลข 4 องสำหรบเลอกหวขอคอลมนแสดงขอมลอนๆ <br />
หมายเลข 5
มสำหรบคลกเพอทำการเพมหรอแกไขอปโหลดไฟลเอกสารเพมเต
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

File diff suppressed because it is too large Load diff

View file

@ -1,138 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
4.5 การคนหาขอมลสวนต การเลอกคอลมนแสดงผลขอม
</div>
<div class="col-12">
<p style="margin-top: 20px; margin-left: 10px">
- หากตองการคนหาขอมลในหวขอตางๆ
ในหนาขอมลสวนตวททำการบนทกใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาของแตละหวขอและทำการกรอกขอมลทเกยวของกบบนทกกอนหน
ลงไประบบจะแสดงขอมลททำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/5_select/4-81.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 81 แสดงตารางการคนหาขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลสำหรบการคนหา <br />
หมายเลข 2 องสำหรบแสดงขอมลจากการกรอกคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตารางทองการขอมลและหากหวคอลมน
แสดงขอมลไมครบและตองการใหคอลมนแสดงผลเพมขนและลดลงหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยว
เหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/5_select/4-82.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 82 แสดงตารางการเลอกคอลมนแสดงขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกหวคอลมนแสดงขอม <br />
หมายเลข 2 องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอม
<br />
หมายเลข 3 องสำหรบแสดงตารางขอมลตามคอลมนทำการเลอก
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,256 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
4.6 การปรบหนาตางแสดงผลหนาขอมลสวนต
</div>
<div class="col-12">
<div style="margin-top: 20px; margin-left: 10px">
-
หากตองการใหหนาแสดงผลหนาขอมลสวนตวของพนกงานแสดงขอมลเตมจอใหใชเมาสคล
<i
class="q-icon mdi mdi-backburger"
style="
color: #747474;
background-color: #dadada;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอใหแถบเมนานขางของหนาจอพบเกบเขาดานขาง และระบบจะแสดง
อมลของพนกงานเตมจอ
และหากตองการใหระบบแสดงแถบเมนเหมอนเดมใหใชเมาสทำการคล
<i
class="q-icon mdi mdi-backburger"
style="
color: #747474;
background-color: #dadada;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอใหแถบเมนแสดงเหมอนเด
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/6_window/4-83.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 83 แสดงการพบแถบเมนายซายเพอใหอมลแสดงเตมจอ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอเป- แถบเมนานขาง
เพอใหระบบแสดงขอมลสวนกวางข
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
สามารถทำการคลกเลอกหวขอเมนตารางเพอใหระบบเลอนตารางใหตโนมวยการคลกชอหวตารางจากแถบเมนานขวาได
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/6_window/4-84.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 84 แสดงแถบหวขอเมนตาราง
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 แถบหวขอเมนตารางขอมลสวนตวสำหรบกดคลกชอตาราง
เพอใหระบบเลอนไปยงตารางนนๆได
เพอใหายตอการดอมลและแกไขขอม
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการดาวนโหลดไฟลเอกสาร ..7/..1 และ
และวแบบยอใหใชเมาสคล
<q-icon
name="mdi-file-eye-outline"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอดาวนโหลดขอมลของพนกงาน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/6_window/4-85.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 85 แสดงหนาดาวนโหลดไฟลเอกสารของพนกงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
อความสำหรบคลกเลอกเพอดาวนโหลดชนดของเอกสารทองการดาวนโหลด
โดยระบบแสดงการเลอกการดาวนโหลดไฟลเอกสาร ..7/..1 และ
ประวแบบยอของพนกงาน
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- และหากตองการทำการบนทกการออกจากราชการของพนกงานใหใชเมาสคล
<q-icon
name="mdi-home-export-outline"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
จากนนระบบจะทำการแสดงตาราง ประเภทการพนราชการ
ใหทำการบนทกขอมลใหครบตามทระบบแนะนำ
หลงจากกรอกขอมลเสรจแลวใหทำการคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอม
และถาหากตองการยกเลกการเพมขอมลใหใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอยกเลกการบนทกขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/04_regist/6_window/4-86.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 4 86 แสดงตารางการเพมขอมลประเภทการพนราชการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกประเภทการพนราชการ <br />
หมายเลข 2 องสำหรบคลกเลอกวนทนราชการ <br />
หมายเลข 3 องสำหรบกรอกขอมลรายละเอยดสาเหต/เหตผลของการพนจากราชการ
<br />
หมายเลข 4 องสำหรบกรอกขอมลคำส/เอกสารอางอ <br />
หมายเลข 5 องสำหรบคลกเลอกว เดอน ออกคำส
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,70 +0,0 @@
<script setup lang="ts">
import registrationmain from "./41_main.vue";
import registrationFind from "./42_find.vue";
import registrationDetail from "./43_detail.vue";
import registrationEdit from "./44_edit.vue";
import registrationSelect from "./45_select.vue";
import registrationWindow from "./46_window.vue";
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 40px"
>
อการใชงานระบบทะเบยนประว
</div>
<div class="row col-12 q-gutter-xs">
<div
id="registrationmain"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationmain />
</div>
<div
id="registrationFind"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationFind />
</div>
<div
id="registrationDetail"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationDetail />
</div>
<div
id="registrationEdit"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationEdit />
</div>
<div
id="registrationSelect"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationSelect />
</div>
<div
id="registrationWindow"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<registrationWindow />
</div>
</div>
</div>
</template>
<style scoped></style>

View file

@ -1,105 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.1 การเขาสหนาระบบสรรหา
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอตองการเขาหนาระบบสรรหาเพอจดการรอบการสอบ รอบคดเลอก หรอการตงคาเวบสรรหาใหทำการคลกแถบเมน สรรหา ทางดานซายของระบบ งร </div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/1_main/5-1.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 336.54px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 1 แสดงการเขาหนาระบบสรรหา
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถทำการตงคาเวบสรรหาไดโดยการใชเมาสคลกเมนอยของระบบสรรหา งคาเวบสรรหา ไดตามรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/1_main/5-2.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 402.12px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 2 แสดงการเขาหนาตงคาเวบสรรหา
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,613 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบทะเบยนประว
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.2 การตงคาเวบไซตระบบสรรหา
</div>
<div class="col-12">
<div style="margin-top: 20px; margin-left: 10px">
- เมอตองการตงคาเวบไซตระบบสรรหาใหใชเมาสคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px 0 2px;
margin-left: 5px;
margin-right: 5px;
"
>
<q-icon name="mdi-plus" style="color: #ffffff" size="xs" />
เพมโลโก
</span>
เพอเพมโลโกของระบบ และหากยนยนการใชปภาพใหทำการคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 10px 0 5px;
margin-left: 0px;
margin-right: 5px;
"
>
<q-icon
name="mdi-cloud-upload"
style="margin: 0 2px 0 2px; color: #ffffff"
size="xs"
/>
ปโหลดไฟล
</span>
เพอใหโลโกแสดงทระบบสรรหา
และหากตองการเพมหรอเปลยนรปภาพแบนเนอรหนาหลกใหใชเมาสคล
<span
style="
background-color: #2196f3;
border: 1px solid #2196f3;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
margin-left: 5px;
margin-right: 5px;
"
>
<q-icon name="mdi-plus" style="color: #ffffff" size="xs" />
เพมแบนเนอร
</span>
<br />และหากยนยนการใชปภาพใหทำการคล
<span
style="
background-color: #2196f3;
border: 1px solid #2196f3;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 10px 0 5px;
margin-left: 5px;
margin-right: 5px;
"
>
<q-icon
name="mdi-cloud-upload"
style="margin: 0 2px 0 2px; color: #ffffff"
size="xs"
/>
ปโหลดแบนเนอร
</span>
เพอใหปภาพแบนเนอรหนาหลกแสดงทระบบสรรหาดงร
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-3.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 3 แสดงการเพมโลโกเวบไซตและแบนเนอรหนาหล
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการเพมรายละเอยดของเวบไซตใหทำการใชเมาสคล
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
รายละเอยดเว จากนนทำการกรอกขอมลรายละเอยดใหครบ
จากนนทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอม
แตหากจะยกเลกการแกไขหรอเพมขอมลใหใชเมาสคล
<q-icon
name="mdi-undo"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอยกเลกการแกไขหรอเพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-4.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 4 แสดงการเพมขอมลรายละเอยดเว
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอเวบภาษาไทย <br />
หมายเลข 2 องสำหรบกรอกชอเวบภาษาองกฤษ <br />
หมายเลข 3 องสำหรบกรอกขอมลผดโดย <br />
หมายเลข 4 องสำหรบกรอกขอมลเวบโดยย
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการเพมรายละเอยดขอมลเกยวกบเวบใหทำการใชเมาสคล
<q-icon
name="mdi mdi-plus"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
อมลเกยวกบเรา จากนนทำการเพมขอความหรอขอมลทองการ
โดยสามารถทำการจดรปแบบ วหนงสอหรอรปแบบฟอนตจากในระบบไดเลย
จากนนทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอม
แตหากจะยกเลกการแกไขหรอเพมขอมลใหใชเมาสคล
<q-icon
name="mdi-undo"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอยกเลกการแกไขหรอเพ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-5.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 5 แสดงการเพมขอมลเกยวกบเรา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
หากตองการเพมรายละเอยดขอมลทอยใหทำการใชเมาสคลกชองทอยเพอเพมขอม
ในชองตาราง อมลเกยวกบเรา และทำการกรอกขอมลใหครบตามทระบบแนะนำ
และกรอก อมลเบอรโทรตดตอสำนกงาน จากนนทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-6.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพ 5 6 แสดงการเพมขอมลทอยของสำนกงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลทอยสำนกงาน <br />
หมายเลข 2 องสำหรบคลกเลอกจงหว <br />
หมายเลข 3 องสำหรบคลกเลอกเขตหรออำเภอ <br />
หมายเลข 4 องสำหรบคลกเลอกตำบลหรอแขวง <br />
หมายเลข 5 องสำหรบแสดงรหสไปรษณหลงจากคลกเลอกขอมลจงหว อำเภอ
และตำบล <br />
หมายเลข 6 องสำหรบกรอกขอมลเบอรโทรของสำนกงาน
</div>
</div>
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- หากตองการเพมขอมลสวนราชการใหทำการใชเมาสคล
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
ตาราง วนราชการ
จากนนทำการกรอกขอมลสวนราชการใหครบตามทระบบแนะนำ
หลงจากททำการกรอก อมลเสรจแลวใหทำกาใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการเพมและบนทกขอม
และถาหากตองการยกเลกการเพมหรอบนทกขอมลใหใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอยกเลกการบนทกขอม
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-7.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 7 แสดงตารางการเพมขอมลสวนราชการ
</div>
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบเพมชอสวนราชการทองการเพมขอม <br />
หมายเลข 2 องสำหรบเพมลงคเวบไซตของสวนราชการททำการเพ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการคนหาขอมลเพมสวนราชการททำการบนทกใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบบนทกกอนหนานลงไประบบจะแสดงขอม
ทำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-8.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 8 แสดงตารางการคนหาขอมลเพมสวนราชการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลเพมสวนราชการสำหรบการคนหา <br />
หมายเลข 2 องสำหรบแสดงขอมลสวนราชการจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง วนราชการ
องการและ
หากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยวเหมอนเดมหวข
คอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-9.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 9 แสดงตารางการเลอกคอลมนแสดงขอมลสวนราชการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกหวคอลมนแสดงขอมลสวนราชการ <br />
หมายเลข 2
องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอมลสวนราชการ
<br />
หมายเลข 3 องสำหรบแสดงตารางขอมลสวนราชการตามคอลมนทำการเลอก
</div>
</div>
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- หากตองการเพมขอมลหนวยงานใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
ตาราง หนวยงาน จากนนทำการกรอกขอมลหนวยงานใหครบตามทระบบแนะนำ
หลงจากททำการกรอกขอม เสรจแลวใหทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการเพมและบนทกขอม
และถาหากตองการยกเลกการเพมหรอบนทกขอมลใหใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอยกเลกการบนทกขอม
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-7.png"
style="
max-width: 70%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 10 แสดงตารางการเพมขอมลหนวยงาน
</div>
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบเพมชอหนวยงานทองการเพมขอม <br />
หมายเลข 2 องสำหรบเพมลงคเวบไซตของหนวยงานททำการเพ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการคนหาขอมลหนวยงานทำการบนทกใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบบนทกกอนหนานลงไประบบจะแสดงขอมลททำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-11.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 11 แสดงตารางการคนหาขอมลหนวยงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลหนวยงานสำหรบการคนหา <br />
หมายเลข 2 องสำหรบแสดงขอมลหนวยงานจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง หนวยงาน
องการ
และหากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยวเหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/2_setting/5-12.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 12 แสดงตารางการเลอกคอลมนแสดงขอมลหนวยงาน
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกหวคอลมนแสดงขอมลหนวยงาน <br />
หมายเลข 2
องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอมลหนวยงาน <br />
หมายเลข 3 องสำหรบแสดงตารางขอมลหนวยงานตามคอลมนทำการเลอก
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,879 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.3 สอบแขงข
<span class="text-dark" style="font-weight: bold; font-size: 15px">
ดการรอบสอบการแขงข
</span>
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- การเขาสหนาจดการรอบสอบแขงขนใหใชเมาสคล สอบแขงข
จากนนระบบจะแสดงเมนอยใหใชเมาสทำการคลกท ดการรอบสอบแขงข
กทเพอเขาสหนาจดการรอบ สอบแขงขนตางๆ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-13.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 336.54px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 13 แสดงการเขาสหนาจดการรอบสอบแขงข
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเพมรอบการสอบแขงขนใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
หน ดการรอบสอบการแขงข
จากนนทำการกรอกขอมลเพอเพมรอบสอบการแขงขนใหครบตามทระบบแนะนำ
หลงจากทำการกรอกขอมลเสรจแลวใหทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการเพมและบนทกขอม
และถาหากตองการยกเลกการเพมหรอบนทกขอมลใหใชเมาสคล
<q-icon
name="mdi-arrow-left"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอยอนกลบไปยงหนาแรก ดการรอบสอบแขงข หรอยกเลกการเพมขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-14.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 14 แสดงตารางการเพมขอมลเพมรอบสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอรอบสอบแขงข <br />
หมายเลข 2 องสำหรบกรอกรอบการสอบ(คร) <br />
หมายเลข 3 องสำหรบกรอกปงบประมาณ <br />
หมายเลข 4 องสำหรบกรอกคาธรรมเนยม <br />
หมายเลข 5 องสำหรบกรอกวนทสอบ <br />
หมายเลข 6 องสำหรบกรอกวนทประกาศ <br />
หมายเลข 7 องสำหรบกรอกวนทสมคร <br />
หมายเลข 8 องสำหรบกรอกวนทชำระเง <br />
หมายเลข 9 องสำหรบกรอกวนทประกาศผล <br />
หมายเลข 10 องสำหรบเพมรปภาพประกอบ <br />
หมายเลข 11 องสำหรบเพมเอกสารประกอบ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการแกไขขอมลรอบสอบแขงขนใหทำการใชเมาสคล
<q-icon
name="mdi-pencil-outline"
style="margin: 0 5px; color: #02a998"
size="xs"
/>
เพอทำการแกไขขอมลหลงจากแกไขขอมลเสรจเรยบรอยแลวใหทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอม
แตหากจะลบขอมลรอบสอบแขงขนรายการใดรายหารหนงใหทำการคลกท
<q-icon
name="mdi-delete"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
และทำการยนยนการลบขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-15.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 15 แสดงตารางการแกไขและการลบรายการสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอแกไขขอมลรอบสอบแขงข <br />
หมายเลข 2 ไอคอนสำหรบคลกเพอลบรอบสอบการแขงข
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการคนหาขอมลรายการสอบแขงขนททำการบนทกใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบบนทกกอนหนานลงไประบบจะแสดงขอม
ทำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-16.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 16 แสดงตารางการคนหาขอมลรายการสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลรายการสอบแขงขนสำหรบการคนหา <br />
หมายเลข 2 องสำหรบแสดงขอมลรายการสอบแขงขนจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง
ดการรอบสอบแขงข
องการและหากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยวเหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-17.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 17 แสดงตารางการเลอกคอลมนแสดงขอมลจดการรอบสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบคลกเพอเลอกหวคอลมนแสดงขอมลจดการรอบสอบแขงข <br />
หมายเลข 2
องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอมลจดการรอบสอบแขงข
<br />
หมายเลข 3
องสำหรบแสดงตารางขอมลจดการรอบสอบแขงขนตามคอลมนทำการเลอก
</div>
</div>
<div class="col-12">
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
-
หากตองการดอมลประวการนำเขาขอมลรายการสอบแขงขนใหใชเมาสคล
<q-icon
name="mdi-history"
style="margin: 0 5px; color: #31ccec"
size="xs"
/>
ในรายชอการสอบแขงขนในชองตาราง ดการรอบสอบแขงข
องการดประวการนำ เขาขอมลจากนนระบบจะแสดงตาราง
ประวการนำเขาขอม
และหากตองการยกเลกการดประวการนำเขาขอมลใหทำการใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
เพอออกจากหนาหรอยกเลกการดประวการนำเขาขอม
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-18.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 18 แสดงตารางประวการนำเขาขอม
</div>
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
หากตองการคนหาประวการนำเขาขอมลททำการบนทกกอนหนานใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบบนทกกอนหนานลงไประบบจะแสดงขอม
ทำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-19.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 19 แสดงตารางประวการนำเขาขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลประวการนำเขาขอมลสำหรบการคนหา
<br />
หมายเลข 2
องสำหรบแสดงประวการการนำเขาขอมลจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง
ประวการนำเขาขอม
องการและหากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยว
เหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-20.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 20
แสดงตารางการเลอกหวขอคอลมนแสดงประวการนำเขาขอม
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกหวคอลมนประวการนำเขาขอม
<br />
หมายเลข 2 องสำหรบเลอกหวคอลมนประวการนำเขาขอมลทองการ
<br />
หมายเลข 3
องสำหรบแสดงขอมลประวการนำเขาขอมลตามคอลมนทำการเลอก
</div>
</div>
<div class="col-12">
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- การดาวนโหลดไฟลรายชอผทธสอบทงหมด
ใหทำการใชเมาสบเบลคลกท
<i
class="q-icon mdi mdi-download"
style="
color: #02a998;
background-color: #e8f4f3;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
รายการสอบทองการ จากนนทำการคล ระบบแสดงเมนอย ทำการเลอก
งออกขอม ทธสอบ จากนนนำไฟลปโหลดเพอแสดงขอมลตอไป
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-21.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 21 แสดงไฟลรายชอผทธสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 อไฟลองแสดงว รายชอผทธสอบ <br />
หมายเลข 2 แสดงรายชอผทธสอบในรอบททำการเลอกโหลดไฟลออกมา
</div>
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถทำการดาวนโหลดไฟลรายชอผทธสอบโดยการใชเมาสคลกท
<q-icon
name="mdi-clipboard-arrow-down"
style="margin: 0 5px; color: #3f51b5"
size="xs"
/>
ในคอลมนจำนวนผสอบทงหมด เพอทำการดาวนโหลดไฟล
หลงจากการคลกระบบจะทำการโหลด ไฟลรายชอผทธสอบในรปแบบไฟล pdf
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-23.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 23 แสดงตารางการอปโหลดไฟลรายชอผสมครสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องคอลมนของ จำนวนผสอบทงหมด <br />
หมายเลข 2 ไอคอนสำหรบคลกเพอดาวนโหลดไฟลรายชอผทธสอบ <br />
หมายเลข 3 วเลขแสดงจำนวนรายชอผสมครสอบสอบ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการนำเขาไฟลผลคะแนนสอบใหทำการใชเมาสคล
<q-icon
name="mdi-file-excel-outline"
style="margin: 0 5px; color: #4caf50"
size="xs"
/>
องคอลมน จำนวนผสอบทงหมด จากนนทำการเลอกไฟลผลคะแนนสอบ ไฟล
xlsx จากนนทำการใช เมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการอปโหลดไฟลและบนทกไฟล
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-24.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 24 แสดงตารางการอปโหลดไฟลผลคะแนนสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องคอลมนของ จำนวนทนทกผลสอบ <br />
หมายเลข 2 ไอคอนสำหรบคลกเพอนำเขาไฟลผลคะแนนสอบ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- สามารถทำการดาวนโหลดไฟลรายชอผสอบแขงขนไดโดยการใชเมาสคลกท
<q-icon
name="mdi-clipboard-arrow-down"
style="margin: 0 5px; color: #3f51b5"
size="xs"
/>
ในคอลมน จำนวนทนทกผลสอบ เพอทำการดาวนโหลดไฟล
หลงจากการคลกระบบจะทำการ โหลดไฟลรายชอผสอบแขงขนไดในรปแบบไฟล
pdf
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-25.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 25 แสดงตารางการดาวนโหลดไฟลรายชอผสอบแขงขนได
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องคอลมนของ จำนวนทนทกผลสอบ <br />
หมายเลข 2 ไอคอนสำหรบคลกเพอดาวนโหลดไฟลรายชอผสอบแขงขนได
<br />
หมายเลข 3 วเลขแสดงจำนวนรายชอทนทกผลสอบ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
สามารถทำการคลกรายชอการสอบแขงขนเพอดรายชอผสมครสอบทงหมดไดโดยการดบเบลคลกทรายการสอบแขงขนทองการดอม
จากนนระบบจะแสดงขอมลรายชอของ
สมครสอบแขงขนและแสดงผลสรปจำนวนผสมครสอบ
สอบผานและสอบไมานให
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-26.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 26 แสดงตารางรายชอผสมครสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 อตารางการสอบแขงข <br />
หมายเลข 2 องสำหรบแสดงจำนวนตวเลขผสมครสอบ <br />
หมายเลข 3 องสำหรบแสดงจำนวนตวเลขผสอบผาน <br />
หมายเลข 4 องสำหรบแสดงจำนวนตวเลขผสอบไมาน <br />
หมายเลข 5 องสำหรบกรอกคนหาขอมลรายชอบคคล/ตำแหนงทสมคร <br />
หมายเลข 6 องสำหรบเลอกหวคอลมนแสดงขอม
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการคนหาขอมลทเกยวของกบผสมครใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบผสมครหรอตำแหนงทสมครลงไประบบจะแสดงขอมลททำ
การคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-27.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 27 แสดงตารางการคนหาขอมลของผสมครสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลทเกยวของกบผสมครสำหรบการคนหา
<br />
หมายเลข 2 องสำหรบแสดงขอมลผสมครจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง
รายชอผสมครสอบแขงข องการ
และหากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยว
เหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-28.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 28
แสดงตารางการเลอกคอลมนแสดงขอมลรายชอผสมครสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
องสำหรบคลกเพอเลอกหวคอลมนแสดงขอมลรายชอผสมครสอบแขงข
<br />
หมายเลข 2
องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอมลรายชอผสมครสอบแขงข
<br />
หมายเลข 3
องสำหรบแสดงตารางขอมลรายชอผสมครสอบแขงขนตามคอลมนทำการเลอก
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
สามารถคลกเขาดรายละเอยดขอมลผสมครสอบไดโดยการดบเบลคลกทรายชอผสมครสอบทองการ
จากนนระบบจะแสดงรายละเอยดขอมลทวไป ผลคะแนนสอบและผลการสอบ
ของผสมครให
และหากตองการดาวนโหลดไฟลอมลผสมครใหทำการใชเมาสคล
<q-icon
name="mdi-download"
style="margin: 0 5px; color: #2196f3"
size="xs"
/>
จากนนระบบจะทำการดาวนโหลดไฟล
หรอหากทำการดาวนโหลดไฟลอมลของผสมครเสรจแล
องการออกจากหนาแสดงขอมลผสมครใหทำการคล
<q-icon
name="mdi-arrow-left"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอยอนกลบออกไปกอนหนาน
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-29.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 29 แสดงตารางการแสดงขอมลผสมครสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ไอคอนสำหรบคลกเพอยอนกลบไปหนาระบบกอนหนาน <br />
หมายเลข 2 องสำหรบแสดงขอมลทวไปของผสมครสอบแขงข <br />
หมายเลข 3 องสำหรบแสดงผลคะแนนสอบของผสมครสอบแขงข <br />
หมายเลข 4 องสำหรบแสดงผลการสอบของผสมครสอบแขงข <br />
หมายเลข 5 มสำหรบคลกเพอดาวนโหลดขอมลของผสมครสอบแขงข
</div>
</div>
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px">
- สามารถทำการดาวนโหลดไฟลอมลผทธสอบ อมลผสอบผานภาค .
และขอมลผสอบแขงขนโดยใชเมาสคล
<i
class="q-icon mdi mdi-download"
style="
color: #02a998;
background-color: #e8f4f3;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
จากนนทำการเลอกการสงออกขอมลของผสมครหลงจากคลกเลอกแลวระบบจะทำการดาวนโหลดไฟล
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/3_managecompet/5-30.png"
style="
max-width: 100%;
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 30 แสดงตารางการสงออกขอมลผสมครสอบแขงข
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกขอมลเอกสารทองการดาวนโหลด
โดยมงออกขอมลผทธสอบ, งออกขอมลผสอบผานภาค .
และสงออกขอมลผสอบแขงข
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,232 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.3 สอบแขงข
<span class="text-dark" style="font-weight: bold; font-size: 15px">
สถสมครสอบแขงข
</span>
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- การเขาสหนาสถการสมครสอบแขงขนใหใชเมาสคล สอบแขงข
จากนนระบบจะแสดงเมนอยใหใชเมาสทำการคลกท สถสมครสอบแขงข
กทเพอเขาสหนาขอมลสถ การสอบแขงในตางๆ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/4_staticompet/5-31.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 224.92px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 31 แสดงการเขาสหนาสถสมครสอบแขงข
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเลอกแสดงขอมลของรอบการสอบตามทองการ
ใหใชเมาสคลกชองรอบการสอบเพอทำการเลอกรอบการสอบเพอแสดงขอมลสถสมครสอบแขงขนทองการทราบขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/4_staticompet/5-32.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 32 แสดงการเลอกรอบการทดสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 ตำแหนงแสดงชอหนาสถสมครสอบแขงข <br />
หมายเลข 2 องสำหรบเลอกรอบการสอบสมครสอบแขงขนสำหรบแสดงขอมลสถ
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การดาวนโหลดขอมลสถางๆ ออกมาในรปแบบไฟล xlsx
เพอเอาขอมลไปตอยอดการใชงานโดยใหใชเมาสคล
<q-icon
name="mdi-dots-vertical"
style="margin: 0 5px; color: hsl(0, 0%, 18%)"
size="xs"
/>
มขวาบนในชองขอมลสถองการดาวนไฟลอม คลกเลอก Inspect >>
Data ระบบจะแสดงขอมลออกมาในรปแบบตาราง ใหทำการใชเมาสคล
<span
style="
background-color: #2196f3;
border: 1px solid #2196f3;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 10px 0 10px;
margin-left: 5px;
margin-right: 5px;
"
>
Download CSV
</span>
และหากตองการใหหนาตางแสดงขอมลเตมจอใหทำการใชเมาสคล
<q-icon
name="chevron_left"
style="margin: 0 5px; color: hsl(0, 0%, 18%)"
size="xs"
/>
หรอหากตองการยกเลกการดอมลใหทำการคล
<q-icon
name="mdi-close"
style="margin: 0 5px; color: hsl(0, 0%, 18%)"
size="xs"
/>
เพอออกจากหนาตางแสดงผลขอมลในรปแบบตาราง
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/4_staticompet/5-33.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 33 แสดงการเลอกรอบการทดสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1
มสำหรบคลกขยายหนาจอขอมลและปมสำหรบคลกออกจากหนาดอม <br />
หมายเลข 2 องสำหรบแสดงขอมลจากรปแบบกราฟมาเปนขอมลแบบตารางขอม
<br />
หมายเลข 3 มสำหรบคลกดาวนโหลดไฟลอมลออกมาในรปแบบไฟล xlsx
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การดาวนโหลดขอมลสถางๆ
ออกมาในรปแบบไฟลปภาพเพอเอาขอมลไปตอยอดการใชงานโดยใหใชเมาสคล
<q-icon
name="mdi-dots-vertical"
style="margin: 0 5px; color: hsl(0, 0%, 18%)"
size="xs"
/>
มขวาบนในชองขอมลสถองการดาวนไฟลอม คลกเลอก Share
>>Link >> Direct link rendered image
จากนนระบบจะทำการดาวนโหลดขอมลสถทำการเลอกขอมดาวนโหลดออกมาในรปแบบไฟลปภาพ
และหากตองการ
<q-icon
name="mdi-close"
style="margin: 0 5px; color: hsl(0, 0%, 18%)"
size="xs"
/>
เพอออกจากหนาตางการดาวนโหลดขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/4_staticompet/5-34.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 34 แสดงการดาวนโหลดขอมลสถออกเปนมาเปนขอมลรปภาพ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
มสำหรบคลกเพอบนทกขอมลสถเปนไฟลปภาพ
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,488 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!--
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.4 ดเลอก
<span class="text-dark" style="font-weight: bold; font-size: 15px">
ดการรอบคดเลอก
</span>
</div>
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอตองการเขาหนาระบบสรรหาเพอจดการรอบการสอบ รอบคดเลอก
หรอการตงคาเวบสรรหาใหทำการคลกแถบเมน สรรหา ทางดานซายของระบบ
งร
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-35.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 315.39px;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 35 แสดงการเขาสหนาจดการรอบคดเลอก
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเพมรอบการคดเลอกใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
หน ดการรอบคดเลอก
จากนนทำการกรอกขอมลเพอเพมรอบสอบการคดเลอกใหครบตามทระบบแนะนำ
หรอหาก
องการแกไขขอมลในภายหนาใหทำการดบเบลคลกทรายชอสมครสอบคดเลอกทองการแกไขขอมลและถาหากตองการยกเลกการเพมหรอบนทกขอมลใหใชเมาสคล
<q-icon
name="mdi-arrow-left"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอยอนกลบไปยงหนาแรก ดการรอบคดเลอก หรอยกเลกการเพมขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-36.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 36 แสดงเพมขอมลเพมรอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกชอรอบคดเลอก/อประกาศ <br />
หมายเลข 2 องสำหรบกรอกรอบการสอบ(คร) <br />
หมายเลข 3 องสำหรบกรอกคาธรรมเนยมสมครสอบคดเลอก <br />
หมายเลข 4 องสำหรบคลกเลอกปงบประมาณ <br />
หมายเลข 5 องสำหรบคลกเลอกวนทสอบคดเลอก <br />
หมายเลข 6 องสำหรบคลกเลอกวนทประกาศรบสมครคดเลอก <br />
หมายเลข 7 องสำหรบคลกเลอกวนทสมครสอบคดเลอก <br />
หมายเลข 8 องสำหรบคลกเลอกวนทชำระเง <br />
หมายเลข 9 องสำหรบคลกเลอกวนทประกาศผลสอบ <br />
หมายเลข 10 องสำหรบคลกเลอกรหสสวนราชการ <br />
หมายเลข 11 องสำหรบคลกเลอกหนวยงาน <br />
หมายเลข 12
มสำหรบคลกเพอยอนกลบหรอคลกเพอยกเลกการเพมขอมลรอบคดเลอก
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเพมขอมลตำแหนงทจะทำการสอบคดเลอกใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
ในชองตาราง ตำแหน จากนนทำการกรอกขอมลตำแหนงใหครบตามทระบบแนะนำ
หรอหากทำการ
นทกขอมลไปกอนหนานแลวตองการลบขอมลตำแหนงทงใหทำการเลอนลงมาทตาราง
ตำแหน และทำการใชเมาสคล
<q-icon
name="mdi-delete"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
เพอลบตำแหนงทองการสมครคดเลอกออก
และทำการเลอกวการชำระเงนสมครสอบคดเลอกดวยการคล
<q-icon
name="mdi-radiobox-marked"
style="margin: 0 5px; color: #2196f3"
size="xs"
/>
เลอกในชองวการชำระเงนทองการในตาราง เลอกวการชำระเง
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-37.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 37 แสดงตารางการเพมตำแหนงทองการสมครคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกตำแหนงทจะเปดสมครสอบคดเลอก <br />
หมายเลข 2
องคลกเลอกวาตองการวปรญญาตรในการสมครสอบคดเลอกหรอไม <br />
หมายเลข 3 องสำหรบคลกเลอกประเภทแบบฟอรมการสมครคดเลอก <br />
หมายเลข 4
มสำหรบคลกเพอลบขอมลการเพมตำแหนงทบสมครสอบคดเลอก <br />
หมายเลข 5 องสำหรบคลกเลอกวการชำระเงนการสมครสอบคดเลอก
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเพมขอมลรปภาพประกอบหรอเอกสารประกอบใหทำการใชเมาสคล
ตาราง
<q-icon
name="mdi-plus"
style="
margin: 0 5px;
color: #00aa86;
border: 1px solid #00aa86;
border-radius: 2px;
"
size="xs"
/>
ปภาพประกอบ และชอง เอกสารประกอบ
หรอหากตองการเพมรายละเอยดขอมลการ
สมครสอบคดเลอกเพมเตมใหทำการกรอกขอมลทตาราง รายละเอยด
โดยสามารถจดเรยงรปแบบฟอนตจากในระบบได
หรอหากตองการกรอกรายละเอยดหมายเหตทำการคลกกรอก ไดตารางหมายเหต
หลงจากทไดทำการกรอกขอมลเพมรอบคดเลอกเสรจสนหมดแล
ใหทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอมลการเพมหรอแกไขรอบคดเลอก
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-38.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 38 แสดงตารางการเพมตำแหนงทองการสมครคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพมรปภาพประกอบการสมครคดเลอก <br />
หมายเลข 2 องสำหรบคลกเพมเอกสารประกอบ <br />
หมายเลข 3 องสำหรบกรอกขอมลรายละเอยดเพมเตมการสมครคดเลอก <br />
หมายเลข 4 องสำหรบกรอกขอมลหมายเหตการณสมครคดเลอก
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการลบรายการรอบสอบคดเลอก ใหทำการใชเมาสคล
<q-icon
name="mdi-delete"
style="margin: 0 5px; color: hsl(0, 100%, 50%)"
size="xs"
/>
และยนยนการลบขอมลรายการสอบสมครคดเลอก งร
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-39.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 39 แสดงการลบรายการขอมลสมครสอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอลบรายการสอบคดเลอก
</div>
</div>
<div class="col-12 row">
<div style="margin-top: 50px; margin-left: 10px">
- และหากตองการโพสตเพอประกาศขาวไมการสมครสอบใดๆ
ใหทำการใชเมาสคล
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--falsy"
aria-hidden="true"
style="
font-size: 24px;
display: inline-block;
padding: 0 0.3em !important ;
height: 0.45em;
"
>
<div class="q-toggle__track"></div>
<div
class="q-toggle__thumb absolute flex flex-center no-wrap"
style="top: -0.07em"
></div>
</div>
ประกาศขาวทวไป ใหเป
<div
class="q-toggle__inner relative-position non-selectable q-toggle__inner--truthy text-positive"
aria-hidden="true"
style="
font-size: 24px;
display: inline-block;
padding: 0 0.3em !important ;
height: 0.45em;
"
>
<div
class="q-toggle__thumb absolute flex flex-center no-wrap"
style="top: -0.07em"
></div>
<div class="q-toggle__track"></div>
</div>
จากนนระบบจะแสดงหนากรอกขอมลเพอประกาศ
และใหทำการกรอกขอมลรายละเอยดทองกรประกาศ
และหลงจากทกรอกขอมลประกาศขาวทวไปเสรจเรยบรอยแล
ใหทำการใชเมาสคล
<q-icon
name="mdi-content-save-outline"
style="margin: 0 5px; color: #01435f"
size="xs"
/>
เพอยนยนการบนทกขอมลประกาศ าวทวไป
หรอตองการยกเลกการประกาศขาวทวไปหรอยกเลกการกรอกขอมลใหทำการใชเมาสคล
<q-icon
name="mdi-arrow-left"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอยอนกลบไปยงหนาแรก
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-40.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 40 แสดงการเพมขอมลประกาศขาวทวไป
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบเปดเพอประกาศขาวทวไป
หรอปดเพอประกาศสอบคดเลอก <br />
หมายเลข 2 องสำหรบกรอกชอรอบคดเลอก/อประกาศ <br />
หมายเลข 3 องสำหรบคลกเลอกวนทประกาศขาวทวไป <br />
หมายเลข 4 องสำหรบเพมรปภาพประกอบประกาศขาวทวไป <br />
หมายเลข 5 องสำหรบเพมเอกสารประกอบประกาศขาวทวไป
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
-
หากตองการคนหาขอมลรายการสอบคดเลอกหรอประกาศขาวทวไปททำการบนทกใหทำการคล
<q-icon
name="mdi-magnify"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
องคนหาและทำการกรอกขอมลทเกยวของกบบนทกกอนหนานลงไประบบ
จะแสดงขอมลททำการคนหา
แตหากตองการยกเลกการดอมลททำการคนหาใหทำการใชเมาสคลกท
<q-icon
name="mdi-close"
style="margin: 0 5px; color: #afafaf"
size="xs"
/>
ในชองกรอกขอมลคนหาเพอยกเลกคนหาขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-41.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 41 แสดงตารางการคนหาขอมลจดการรอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบกรอกขอมลรายการรอบคดเลอกขนสำหรบการคนหา <br />
หมายเลข 2
องสำหรบแสดงขอมลรายการรอบคดเลอกจากการกรอกขอมลเพอคนหา
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากตองการใหตารางแสดงคอลมนอมลตามทองการใหใชเมาสคล
<q-icon
name="mdi-menu-down"
style="margin: 0 5px; color: #afafaf"
size="sm"
/>
ในชองคอลมนเพอทำการเลอกหวขอคอลมนแสดงขอมลของตาราง
ดการรอบคดเลอก
องการและหากตองการใหตารางแสดงหวขอคอลมนเพมขนหรอใหตารางทำการแสดงหวขอคอลมนเหมอนเดมใหทำการใชเมาสคลกทรายชอหวขอตารางใหกลบมาเปนสเขยวเหมอนเดมหวขอคอลมนจะแสดงเหมอนเด
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/5_qualifiers/5-42.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 42 แสดงตารางการเลอกคอลมนแสดงขอมลจดการรอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกหวคอลมนแสดงขอมลจดการรอบคดเลอก
<br />
หมายเลข 2
องสำหรบแสดงขอมลหวคอลมนใชในการเลอกแสดงขอมลจดการรอบคดเลอก
<br />
หมายเลข 3
องสำหรบแสดงตารางขอมลจดการรอบคดเลอกตามคอลมนทำการเลอก
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,110 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.4 ดเลอก
<span class="text-dark" style="font-weight: bold; font-size: 15px">
ดการรอบคดเลอกคนพการ
</span>
</div>
<div class="col-12">
<p style="margin-top: 20px; margin-left: 10px">
- การเพมรอบการคดเลอกคนพการใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
หน ดการรอบคดเลอกคนพการ
จากนนทำการกรอกขอมลเพอเพมรอบสอบการคดเลอกคนพการใหครบตาม
ระบบแนะนำ
หรอหากตองการแกไขขอมลในภายหนาใหทำการดบเบลคลกทรายชอสมครสอบคดเลอกทองการแกไขขอม
และถาหากตองการยกเลกการเพมหรอบนทกขอมลใหใช เมาสคล
<q-icon
name="mdi-arrow-left"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอยอนกลบไปยงหนาแรก ดการรอบคดเลอก หรอยกเลกการเพมขอม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/6_disabilities/5-43.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 43 แสดงตารางการเพมขอมลการคดเลอกคนพการ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบการกรอกชอรอบคดเลอกคนพการ <br />
หมายเลข 2 องสำหรบคลกเพอเพมหรอคลกกรอกรอบการสอบ (คร) <br />
หมายเลข 3 องสำหรบคลกเลอกปงบประมาณ <br />
หมายเลข 4 องสำหรบกรอกคาธรรมเนยมการสอบคดเลอก <br />
หมายเลข 5 องสำหรบคลกเลอกวนทสอบคดเลอกคนพการ <br />
หมายเลข 6 องสำหรบคลกเลอกวนทประกาศการสอบคดเลอกคนพการ <br />
หมายเลข 7 องสำหรบคลกเลอกวนทสมครสอบคดเลอกคนพการ <br />
หมายเลข 8 องสำหรบคลกเลอกวนทชำระเงนสอบคดเลอกคนพการ <br />
หมายเลข 9 องสำหรบคลกเลอกวนทประกาศผลสอบคดเลอกคนพการ <br />
หมายเลข 10
องสำหรบคลกเพมรปภาพประกอบการประกาศสมครสอบรอบคดเลอกคนพการ
<br />
หมายเลข 11
องสำหรบคลกเพมเอกสารประกอบการประกาศสมครสอบรอบคดเลอกคนพการ
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,533 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-9">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<!-- <q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ระบบการสรรหาบคคล
</div>
</div>
</q-card> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.4 ดเลอก
<span class="text-dark" style="font-weight: bold; font-size: 15px;">
ดการรายชอคดเลอก
</span>
</div>
<div class="col-12">
<p
style="margin-top:20px;
margin-left: 10px">
- หากตองการทจะจดการรายชอผสมครคดเลอกเปนการยนยนการสมครคดเลอกหรอการตรวจสอบขอมลการคดเลอก การยนยนการโอนชำระเงนตางๆ ใหทำการใชเมาสบเบลคล
รายการสอบคดเลอก เพอใหระบบแสดงรายชอผสมครสอบคดเลอก และแสดงสถานะการสมครสอบคดเลอกของผสมคร
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-44.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 44 แสดงตารางการจดการรายชอคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอยอนกลบหนาจดการรายชอคดเลอก <br>
หมายเลข 2 องสำหรบแสดงชอรอบการคดเลอกของขอมลทเขามาดอม <br>
หมายเลข 3 องสำหรบเลอกวนทสรปจำนวนผสมครคดเลอกตามวนทเลอก <br>
หมายเลข 4 มสำหรบคลกดาวนโหลดสรปขอมลสมครสอบ <br>
หมายเลข 5 มสำหรบคลกดาวนโหลดรายชอผทธสอบ <br>
หมายเลข 6 มสำหรบคลกดาวนโหลดรายชอผสอบแขงขนได <br>
หมายเลข 7 องสำหรบแสดงตวเลขจำนวนผสมครคดเลอกทงหมด <br>
หมายเลข 8 องสำหรบแสดงตวเลขจำนวนผทธเขารบคดเลอกทงหมด <br>
หมายเลข 9 องสำหรบแสดงตวเลขจำนวนผเขารบการคดเลอก <br>
หมายเลข 10 องสำหรบแสดงตวเลขผานการสอบ <br>
หมายเลข 11 องสำหรบแสดงตวเลขผไมานการสอบ <br>
หมายเลข 12 องสำหรบแสดงตวเลขผสมครคดเลอกเพศชาย <br>
หมายเลข 13 องสำหรบแสดงตวเลขผสมครคดเลอกเพศหญ <br>
หมายเลข 14 องสำหรบคลกเลอกแสดงขอมลสถานะของผสมครสอบคดเลอก <br>
หมายเลข 15 องสำหรบเลอกไฟลปโหลดไฟลดทงสอบ และเลอกไฟลปโหลดไฟลคะแนนสอบ <br>
หมายเลข 16 มสำหรบคลกอปโหลดไฟลดทงสอบ และปมสำหรบคลกอปโหลดไฟลคะแนนสอบ <br>
หมายเลข 17 มสำหรบคลกดาวนโหลดไฟลอมลผสมครสอบคดเลอก <br>
หมายเลข 18 องสำหรบแสดงขอมลรายชอผสมครสอบคดเลอก <br>
หมายเลข 19 องสำหรบคนหารายชอผสมครรายบคคล <br>
หมายเลข 20 องสำหรบเลอกหวคอลมนแสดงขอมลตาราง <br>
หมายเลข 21 มสำหรบคลกเป-ดแสดงตารางสรปจำนวนผสมครคดเลอก
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- การเลอกวนทเพอดสรปจำนวนผสมครคดเลอกในแตละวนหรอวนททำการเลอก ใหทำการใชเมาสคล
<q-icon name="mdi-download" style="margin: 0 5px; color: #00aa86;" size="xs"/>
เลอกวนทในชองปฏนโดยเลอกวนท เดอน จากนนทำการเมาสคล ดาวนโหลดขอมลผสมครสอบ จากนนระบบจะทำการดาวนโหลดไฟล xlsx อมลของผสมครในวนททำการเลอก
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-45.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 45 แสดงตารางการเลอกวนทเพอดสรปจำนวนผสมครคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอเลอกวนท <br>
หมายเลข 2 องสำหรบคลกเลอกวนท เดอน
</div>
</div>
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px;">
- เมอตองการตงคาเวบไซตระบบสรรหาใหใชเมาสคล
<span
style="
background-color: hsl(0, 0%, 100%);
border: 1px solid #00aa86;
color: #2196f3;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px 0 5px;
margin-left: 5px;
margin-right: 5px;
"
>
ตรวจสอบขอมลสมครสอบ
</span>
จากนนระบบจะแสดงขอมลของผสมครสามารถทำการแกไขขอมลได และหลงจากทำการแกไขขอมลเสรจสนแล ใหทำการกดคล
<i class="q-icon mdi mdi-content-save-outline"
style="color: #2196f3;
background-color: #d5e4f07e;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 4px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
">
</i>
เพอบนทกขอมลแกไข หรอหาตรวจสอบขอมลของผสมครเสรจเรยบรอยแลวใหทำการคลกป
<i class="q-icon mdi mdi-check"
style="color: #02A998;
background-color: hwb(174 82% 2% / 0.624);
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 4px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
">
</i>
เพอยนยนการตรวจสอบคณสมบอมลของผสมครเรยบรอย
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-46.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 46 แสดงตารางการตรวจสอบคณสมบสมครสอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอบนทกขอม ในกรณแกไขขอมลของผสมครสอบ <br>
หมายเลข 2 มสำหรบยนยนการตรวจสอบขอมลของผสมครสอบ
</div>
</div>
<div class="col-12">
<div style="margin-top: 50px; margin-left: 10px;">
- การตรวจสอบหลกฐานชำระเงนใหทำการใชเมาสคล
<span
style="
background-color: hsl(0, 0%, 100%);
border: 1px solid #00aa86;
color: #2196f3;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px 0 5px;
margin-left: 5px;
margin-right: 5px;
"
>
ตรวจสอบหลกฐานชำระเง
</span>
คอลมนสถานะของผสมคร จากนนทำการตรวจสอบขอมลพรอมตรวจสอบหลกบานการโอนเง หากตรวจสอบเสรจสนแลวใหทำการใชเมาสคล
<span
style="
background-color: #00aa86;
border: 1px solid #00aa86;
color: #ffffff;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 10px 0 5px;
margin-left: 5px;
margin-right: 5px;
"
>
<q-icon name="mdi-check" style="margin: 0 1px 0 5px; color: #ffffff;" size="xs"/>
ตรวจสอบขอม
</span>
เพอยนยนการตรวจสอบการชำระเงนเสรจแล
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-47.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 47 แสดงตารางการตรวจสอบการชำระเงนของผสมครสอบคดเลอก
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกเพอยนยนการตรวจสอบขอมลการชำระเงนของผสมครสอบ
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- การดาวนโหลดไฟลอมลผสมครสอบคดเลอกเพอจดทงสอบ ใหทำการใชเมาสคล
<q-icon name="mdi-download" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ในรายการจากนนระบบแสดงเมนอย แลวทำการคล ดาวนโหลดจดการรายชอผสมคร จากนนระบบจะทำการดาวนโหลดไฟล xlsx ให แลวทำการกรอกเลขทงสอบจากนนกดบนทกไฟล และนำไปอปโหลดในระบบ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-48.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 48 แสดงตารางการเพมเลขทงสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 อไฟลการดาวนโหลดจดการรายชอผสมคร <br>
หมายเลข 2 องสำหรบการกรอกเลขทงสอบของผสมครและทำการบนทกกอนนำไฟลปโหลดเขาระบบ
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- การจดทงสอบใหทำการใชเมาสคล
<q-icon name="mdi-download" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ดาวนโหลดจดการรายชอผสมคร ตารางแสดงรายชอผสมคร ระบบจะทำการดาวนโหลดไฟล xlsx จากนนทำการเปดไฟล และกรอก
อมลเลขทงสอบของผสมครใหครบ จากนนทำการบนท จากนนทำการคลกอปโหลดไฟลงสอบในชอง ปโหลดทงสอบ จากนนคล
<q-icon name="mdi-upload" style="margin: 0 5px; color: #2196f3;" size="xs"/>
เพออปโหลดไฟล
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-49.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 49 แสดงตารางการจดทงสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกดาวนโหลดไฟลดการรายชอผสมคร <br>
หมายเลข 2 องสำหรบอปโหลดไฟลดทงสอบ
หมายเลข 3 มสำหรบคลกเพออปโหลดไฟลงสอบ
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- การดาวนโหลดไฟลอมลผสมครสอบคดเลอกเพออปโหลดคะแนนสอบ ใหทำการใชเมาสคล
<q-icon name="mdi-download" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ในรายการจากนนระบบแสดงเมนอย แลวทำการคล ดาวนโหลด
ดการรายชอผสมคร จากนนระบบจะทำการดาวนโหลดไฟล xlsx ให โดยไฟลโหลดมาตองมอมลผสมครรวมถงเลขทงสอบททำการกรอกกอนหนานวย จากนนทำการกรอกขอม
คะแนนแลวทำการบนทกไฟล และอปโหลดเขาระบบ
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-50.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 50 แสดงตารางการเพมเลขทงสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 อไฟลการดาวนโหลดจดการรายชอผสมคร <br>
หมายเลข 2 องสำหรบการกรอกคะแนนสอบของผสมครและทำการบนทกกอนนำไฟลปโหลดเขาระบบ
</div>
</div>
<div class="col-12">
<p
style="margin-top:50px;
margin-left: 10px">
- การสรปคะแนนสอบใหทำการใชเมาสคล
<q-icon name="mdi-download" style="margin: 0 5px; color: #00aa86;" size="xs"/>
ดาวนโหลดขอมลผสมคร ตารางแสดงรายชอผสมคร ระบบจะทำการดาวนโหลดไฟล xlsx จากนนทำการเปดไฟล และกรอกขอมลคะแนนสอบของผสมครใหครบ จากนนทำการบนท จากนนทำการคลกอปโหลดไฟลคะแนนสอบในชอง ปโหลดคะแนนสอบ จากนนคลกป
<q-icon name="mdi-upload" style="margin: 0 5px; color: #2196f3;" size="xs"/>
เพออปโหลดไฟล
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/05_recruitment/7_selection/5-51.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97B2DE; ;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 5 51 แสดงตารางการอปโหลดคะแนนสอบ
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 มสำหรบคลกดาวนโหลดไฟลดการรายชอผสมคร <br>
หมายเลข 2 องสำหรบอปโหลดไฟลคะแนนสอบ <br>
หมายเลข 3 มสำหรบคลกเพออปโหลดไฟลคะแนนสอบ
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,87 +0,0 @@
<script setup lang="ts">
import recruitmain from "@/modules/01_manual/components/5_recruitment/51_main.vue";
import recruitSetting from "@/modules/01_manual/components/5_recruitment/52_setting.vue";
import recruitManage from "@/modules/01_manual/components/5_recruitment/53_managecompet.vue";
import recruitstati from "@/modules/01_manual/components/5_recruitment/54_staticompet.vue";
import recruitQualifiers from "@/modules/01_manual/components/5_recruitment/55_qualifiers.vue";
import recruitDisabilities from "@/modules/01_manual/components/5_recruitment/56_disabilities.vue";
import recruitSelection from "@/modules/01_manual/components/5_recruitment/57_selection.vue";
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 40px"
>
อการใชงานระบบจดการระบบสรรหา
</div>
<div class="row col-12 q-gutter-xs">
<div
id="recruitmain"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitmain />
</div>
<div
id="recruitSetting"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitSetting />
</div>
<!-- <div
id="recruitManage"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
สอบแขงข
</div> -->
<div
id="recruitManage"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitManage />
</div>
<div
id="recruitstati"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitstati />
</div>
<div
id="recruitQualifiers"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitQualifiers />
</div>
<div
id="recruitDisabilities"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitDisabilities />
</div>
<div
id="recruitSelection"
name="7"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitSelection />
</div>
</div>
</div>
</template>
<style scoped></style>

File diff suppressed because it is too large Load diff

View file

@ -1,736 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
<!-- <div class="row col-12">
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
</div> -->
<q-card
flat
bordered
class="col-12 q-pa-md"
style="
background-color: #ecebeb;
border-radius: 8px 8px 0px 0px;
padding: 10px 16px 10px 16px;
"
>
<div class="custom-topic text-dark">
<div style="font-size: 16px; font-weight: 700">
ออกคำส
</div>
</div>
</q-card>
<q-card
flat
bordered
class="col-12 q-pa-md"
style="border-radius: 0px 0px 8px 8px"
>
<!-- <div style="font-weight: bold; font-size: 15px; color: #00aa86">
5.1 การเขาสหนาระบบสรรหา
</div>
-->
<div class="col-12" style="margin-top: 20px; margin-left: 10px">
- เมอเขาสระบบทรพยากรบคคล ปรากฏหนาจอหนาแรกของระบบทรพยากรบคคล ใหคลกเลอกแถบเมน ออกคำส โดยระบบแสดงหนาตารางออกคำสงพรอมรายการออกคำสงตาง งรปภาพ
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-1.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: 255px;
height: 380px;
border: 1px solid #97B2DE;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 1 ระบบออกคำส
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- หากเขาสระบบออกคำส ระบบจะแสดงตารางรายงานออกคำสงตาง ทำการออกรายงานและ
แสดงสถานะการอออกคำสงของรายงาน โดยสามารถเพมรายงานคำสงตาง ได งรปภาพ
</p>
</div>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-2.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: auto;
height: auto;
border: 1px solid #97B2DE;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 2 รายการออกคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเลอกปงบประมาณ <br>
หมายเลข 2 ไอคอนสำหรบคลกเพอเพมขอมลรายงานออกคำส <br>
หมายเลข 3 องสำหรบคลกเลอกประเภทรายงานการแสดงขอมลในตาราง <br>
หมายเลข 4 องสำหรบคลกเลอกสถานะรายงานการแสดงขอมลในตาราง <br>
หมายเลข 5 องตารางสำหรบแสดงรายงานคำสงและขอมลทเกยวของ <br>
หมายเลข 6 องสำหรบคลกเพอกรอกขอมลคนหารายงานคำส <br>
หมายเลข 7 ไอคอนสำหรบคลกเพอแสดงประวออกคำส <br>
หมายเลข 8 สถานะ ออกคำส หมายถ ไดทำการออกคำสงรายงานเสรจสนทกขนตอน <br>
หมายเลข 9 สถานะ ญชแนบทาย หมายถ อยในหนาเพมไฟลคำสงและบญชแนบทาย/นตอนท 4 <br>
หมายเลข 10 สถานะ เลอกผบสำเนา หมายถ อยในหนาเลอกรายชอสงสำเนา/นตอนท 3 <br>
หมายเลข 11 สถานะ ดทำรางคำส หมายถ อยในหนากรอกรายละเอยดการออกคำส/นตอนท 1 <br>
หมายเลข 12 สถานะ รอผอำนาจลงนาม หมายถ รอคล ออกคำส /นตอนท 4
</div>
</div>
<div class="col-12">
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- ประเภทคำสงปจจนมงหมด 24 คำส ไดแก
<br />
<div style="margin-left: 20px;">
1.) C-PM-01 คำสงบรรจและแตงต: สำหรบผสอบแขงขนได
<br />
2.) C-PM-02 คำสงบรรจและแตงต: สำหรบผไดบคดเลอก
<br />
3.) C-PM-03 คำสงแตงต: สำหรบขาราชการ กทม. เด
<br />
4.) C-PM-04 คำสงยาย: สำหรบขาราชการ กทม. เด
<br />
5.) C-PM-05 คำสงแตงต
<br />
6.) C-PM-06 คำสงเลอน
<br />
7.) C-PM-07 คำสงยาย
<br />
8.) C-PM-08 คำสงบรรจและแตงตงขาราชการฯ กลบเขารบราชการ
<br />
9.) C-PM-09 คำสงบรรจและแตงตงผออกไปรบราชการทหารกลบเขารบราชการ
<br />
10.) C-PM-10 คำสงแตงตงคณะกรรมการประเมนผลการทดลองปฏหนาทราชการ
<br />
11.) C-PM-11 คำสงใหาราชการทผลการทดลองปฏหนาทราชการไมำกวามาตรฐาน
กำหนดรบราชการตอไป
<br />
12.) C-PM-12 คำสงใหาราชการออกจากราชการเพราะผลการทดลองปฏหนาท
ราชการตำกวามาตรฐานทกำหนด
<br />
13.) C-PM-13 คำสงใหโอนขาราชการกรงเทพมหานครสาม
<br />
14.) C-PM-14 คำสงรบโอนขาราชการกรงเทพมหานครสาม
<br />
15.) C-PM-15 คำสงใหวยราชการ
<br />
16.) C-PM-16 คำสงสงตวกล
<br />
17.) C-PM-17 คำสงอนญาตใหาราชการลาออกจากราชการ
<br />
18.) C-PM-18 คำสงใหออกจากราชการ
<br />
19.) C-PM-19 คำสงปลดออกจากราชการ
<br />
20.) C-PM-20 คำสงไลออกจากราชการ
<br />
21.) C-PM-21 คำสงแตงตงลกจางชวคราวเปนลกจางประจำ
<br />
22.) C-PM-22 คำสงปรบระดบชนงาน
<br />
23.) C-PM-23 คำสงใหกจางออกจากราชการ
<br />
24.) C-PM-24 คำสงยายลกจางประจำ
</div>
</p>
</div>
</div>
<div class="col-12" >
<p style="margin-top: 50px; margin-left: 10px">
- วอยางการการออกคำส C-PM-01 คำสงบรรจและแตงต: สำหรบผสอบแขงขนได รายชอจะ
สามารถออกคำสงไดอเมอระบบ สรรหา งรายชอมาออกคำสงเสรจแลวเทาน หากไมไดทำการสงรายชอออกคำส ในระบ ออกคำส จะไมรายชอเพอดำเนนการต หากทำการกรอกขอมลเสรจสนตามระบบแนะนำเสรจแล ทำการคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
และยนยนการบนทกขอม เพอไปยงขนตอนท 2
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-3.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
width: auto;
height: auto;
border: 1px solid #97B2DE;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 3 กรอกรายละเอยดการออกคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงขนตอนการออกคำส นตอนท 1 การกรอกรายละเอยดคำส <br>
หมายเลข 2 องสำหรบคลกเลอกประเภทคำส<br>
หมายเลข 3 องสำหรบแสดงคำสงเรอง<br>
หมายเลข 4 องสำหรบคลกกรอกคำสงเลขท <br>
หมายเลข 5 องสำหรบคลกเลอกป ..<br>
หมายเลข 6 องสำหรบคลกเลอกวนทคำสงมผล<br>
หมายเลข 7 องสำหรบคลกกรอกหรอเลอกคำสงโดย<br>
หมายเลข 8 องสำหรบคลกกรอกหรอคลกเลอกผอำนาจลงนาม<br>
หมายเลข 9 องสำหรบคลกกรอกหรอคลกเลอกตำแหนงผอำนาจลงนาม<br>
หมายเลข 10 องสำหรบคลกเลอกรอบการสอบ<br>
หมายเลข 11 องสำหรบคลกกรอก มต กก. ครงท (เรอง สมครสอบฯ)<br>
หมายเลข 12 องสำหรบคลกเลอกวนท (เรอง บสมครสอบฯ)<br>
หมายเลข 13 องสำหรบคลกกรอก มต กก. ครงท (เรอง ผลการสอบ)<br>
หมายเลข 14 องสำหรบคลกเลอกวนท (เรอง ผลการสอบ)<br>
หมายเลข 15 มสำหรบคลกบนทกขอมลการออกคำส
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
การเลอกรายชอเพอออกคำส ใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
จากนนทำการคล
<q-icon
name="mdi-checkbox-marked"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเลอกรายชอออกคำส หากทำการคลกเลอกรายชอสำเร ใหทำการคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
และยนยนการบนทกขอมลเพอบนทกรายชอทเลอก หรอหากยกเลกการเลอกรายชอใหทำการคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
ระบบจะแสดงหนาขนตอนท 2 หนาเลอกรายช โดยไมรายชอทเลอก หากทำการเลอกรายชอเสรจแล ใหทำการกรอกขอมลเงนเดอนทกคร โดยการใชเมาสคล
<q-icon
name="mdi-cash-multiple"
style="margin: 0 5px; color:rgb(49, 204, 236)"
size="xs"
/>
จากนนทำการกรอกขอมลเงนเดอน หากไมทำการกรอกขอมลเงนเดอน ในสวนของการออกคำส รายงานการออกคำสงจะไมปรากฏเงนเดอน หรอการตองการลบรายชอผสอบแขงขนไดทำการเลอกรายช ใหทำการคล
<q-icon
name="mdi-delete"
style="margin: 0 5px; color:hsl(0, 100%, 50%)"
size="xs"
/>
รายชอทองการลบ และยนยนการลบขอม รายชอทกลบจะปรากฏอยในตารางการเพมรายช หากจะเพมรายชอใหมทำการคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
แลวเพมรายชอเขามาใหมได
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-4.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 4 เลอกรายชอออกรายงานคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงขนตอนการออกคำส นตอนท 2 การเลอกรายช <br>
หมายเลข 2 ไอคอนสำหรบคลกเพอเลอกรายช<br>
หมายเลข 3 ตารางแสดงรายชอททำการเลอกรายชอมา<br>
หมายเลข 4 ไอคอนสำหรบคลกเพอจดเรยงรายชอข-ลง<br>
หมายเลข 5 ไอคอนสำหรบคลกเพอกรอกขอมลเงนเดอน<br>
หมายเลข 6 ไอคอนสำหรบคลกเพอลบรายชอออกจากการออกคำสงแตงต<br>
หมายเลข 7 องสำหรบคลกกรอกขอมลเพอคนหารายช<br>
หมายเลข 8 มสำหรบคลกเพอยอนกลบไปขนตอนกรอกรายละเอยดกอนหนาน<br>
หมายเลข 9 มสำหรบคลกเพอบนทกขอมลการเลอกรายช
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- นตอนท 3 การเลอกรายชอสงสำเราคำส เพมรายชอตามหนวยงาน ใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
จากนนทำการเลอกรายชอทองการเพมเพอสงสำเนาคำส หากเลอกรายชอเสรจแล รายชอจะปรากฏในหนาตารางของ นตอนท 3 เลอกรายชอออกคำส ใหทำการคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
และยนยนการบนทกขอม หรอหากตองการลบรายช ใหทำการใชเมาสคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
และยนยนการลบขอมลรายช โดยระบบสามารถคลกเพอเพมรายชอสงสำเนาคำสงไดเรอย
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-5.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 5 แสดงรายชอหนวยงานสงสำเนาคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงขนตอนการออกคำส นตอนท 3 การเลอกรายชอสงสำเนาคำส <br>
หมายเลข 2 ไอคอนสำหรบคลกเพอเพมรายชอสงสำเนาคำส<br>
หมายเลข 3 องตารางแสดงรายชอทเลอกสงสำเราคำส<br>
หมายเลข 4 องสำหรบคลกเลอกชองทางการสงสำเนาคำส<br>
หมายเลข 5 ไอคอนสำหรบคลกเพอลบรายชอการสงสำเนาคำส<br>
หมายเลข 6 องสำหรบคลกเพอกรอกขอมลคนหารายชอสงสำเนาคำส<br>
หมายเลข 7 มสำหรบคลกเพอกลบไปเลอกรายช นตอนท 2<br>
หมายเลข 8 มสำหรบคลกเพอบนทกขอมลรายชอสงสำเนาคำส
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- การเลอกรายชอสงสำเนาคำส ใหทำการใชเมาสคล
<q-icon
name="mdi-plus"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
ระบบแสดงตาราง เลอกรายชอตามหนวยงาน จากนนทำการใชเมาสคลกเลอกหนวยงานกอน จากนนระบบจะแสดงรายชอบคคลของหนวยงานน ให จากนนทำการคล
<q-icon
name="mdi-checkbox-marked"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
เพอเลอกรายชอสงสำเนาคำส หากทำการคลกเลอกรายชอเสรจสนแล ใหทำการใชเมาสคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
และยนยนการบนทกขอมลการเพมรายชอสงสำเนาคำส และหากตองการยกเลกการเลอกรายช ใหคล
<i
class="q-icon mdi mdi-close"
style="
color: red;
background-color: #ffe5e6;
margin-right: 5px;
margin-left: 5px;
border-radius: 20px;
padding: 2px; /* เพิ่มขนาดพื้นที่ว่างในไอคอน */
"
>
</i>
ระบบจะแสดงหนากอนหนาน หรอหนาขนตอนท 3 เลอกรายชอสงสำเนาคำส
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-6.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 6 เลอกรายชอหนวยงานสงสำเนาคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องสำหรบคลกเพอกรอกขอมลคนหาหนวยงาน <br>
หมายเลข 2 องสำหรบคลกเลอกและแสดงหนวยงานตาง <br>
หมายเลข 3 องตารางสำหรบแสดงรายชอของหนวยงานททำการคลกเลอก/คลกเลอกรายช<br>
หมายเลข 4 องสำหรบกรอกขอมลคนหารายชอทองการสงสำเนาคำส<br>
หมายเลข 5 มสำหรบคลกบนทกขอมลรายชอสงสำเนาคำส<br>
หมายเลข 6 ไอคอนสำหรบคลกเพอยกเลกการเพมรายชอสงสำเนาคำส
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
- นตอนท 4 รายละเอยดคำสงและแนบทาย ใหทำการคลกเลอก นทลงนาม ในตาราง รายละเอยด และทำการคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
เพอใหเอกสารคำสงลงวนทลงนามในเอกสาร จากนนทำการคลกในหวข คำส และ เอกสารแนบทาย และทำการดาวนโหลดไฟล PDF อไปทำการเอาไฟลคำส PDF ทำการดาวนโหลดมาอปโหลดลงในตาราง คำส ไฟลคำสงและไฟลเอกสารแนบทาย จากนนและคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
นท
</span>
หากทำการคลกบนทกเสรจแล ระบบจะปรากฏไอคอน
<q-icon
name="mdi-eye"
style="margin: 0 5px; color: #00aa86"
size="xs"
/>
สำหรบดเอกสารทปโหลด และไอคอน
<q-icon
name="mdi-download"
style="margin: 0 5px; color: red"
size="xs"
/>
สำหรบดาวนโหลดเอกสาร หากบนทกและตรวจสอบเอกสารเสรจสนหมดแล ใหทำการใชเมาสคล
<span
style="
background-color: #01435F;
border: 1px solid #01435F;
color: white;
font-size: 12px;
text-align: center;
display: inline-block;
padding: 0px 5px;
border-radius: 2px;
margin: 0px 5px 0px 5px;
"
>
ออกคำส
</span>
เลอก ออกคำสงทนท หากทำการคลกออกคำสงเสรจแล จะไมสามารถแกไขเอกสารคำสงได และหากคลกออกคำสงเสรจสนแล รายชอผสอบแขงขนจะปรากฏในทะเบยนประว าราชการ กทม. สาม
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-7.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 7 คำสงและแนบทายรายงานออกคำส
</div>
<div
style="
margin-top: 20px;
padding: 10px;
background-color: #f3f3f3;
font-size: 14px;
color: #000000;
border-radius: 5px;
"
>
หมายเลข 1 องแสดงขนตอนการออกคำส นตอนท 4 การเลอกรายชอสงสำเนาคำส <br>
หมายเลข 2 องสำหรบแสดงตวอยางเอกสารคำส <br>
หมายเลข 3 องสำหรบกรอกเลขทคำส <br>
หมายเลข 4 องสำหรบคลกเลอกปออกคำส <br>
หมายเลข 5 ไอคอนสำหรบคลกเพอดวอยางเอกสารเตมจอ <br>
หมายเลข 6 ไอคอนสำหรบคลกเพอเลอนดหนาตวอยางเอกสารซาย-ขวา <br>
หมายเลข 7 ไอคอนสำหรบดาวนโหลดเอกสารคำส (ไฟล PDF, xlsx) <br>
หมายเลข 8 ไอคอนสำหรบดาวนโหลดเอกสารแนบทาย (ไฟล PDF, xlsx) <br>
หมายเลข 9 องสำหรบคลกเลอกไฟลคำสงเพออปโหลด <br>
หมายเลข 10 ไอคอนสำหรบดเอกสารทปโหลด และไอคอนดาวนโหลดเอกสารทปโหลด <br>
หมายเลข 11 องสำหรบคลกเลอกไฟลเอกสารแนบทายเพออปโหลด <br>
หมายเลข 12 ไอคอนสำหรบดเอกสารแนบทายทปโหลด และไอคอนดาวนโหลดเอกสารทปโหลด <br>
หมายเลข 13 มสำหรบคลกบนทกเพออปโหลดเอกสารคำสงและเอกสารแนบทาย <br>
หมายเลข 14 มสำหรบคลกเพอยอนไปขนตอนท 3 เลอกรายชอสงสำเนา <br>
หมายเลข 15 มสำหรบคลกเพอออกคำสงเอกสาร
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-8.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 8 วอยางเอกสารรายงานคำส
</div>
</div>
<div class="col-12">
<p style="margin-top: 50px; margin-left: 10px">
</p>
</div>
<div class="col-12">
<q-img
src="@/assets/manual/07_commands/1_main/7-9.png"
style="
display: block;
margin: 0 auto;
border-radius: 20px;
margin-top: 20px;
border: 1px solid #97b2de;
"
/>
<div class="text-center text-grey-6" style="margin-top: 20px">
ปภาพท 7 9 วอยางเอกสารแนบทายคำส
</div>
</div>
</q-card>
<!-- </div>
</div> -->
</template>

View file

@ -1,843 +0,0 @@
<template>
<div :class="$style.div">
<div :class="$style.inner">
<div :class="$style.groupChild" />
</div>
<div :class="$style.child" />
<div :class="$style.item" />
<div :class="$style.rectangleDiv" />
<img :class="$style.image1Icon" alt="" src="/image-1@2x.png" />
<div :class="$style.child1" />
<div :class="$style.rectangleParent">
<div :class="$style.groupItem" />
<div :class="$style.caption">นหา</div>
<img :class="$style.vectorIcon" alt="" src="/vector.svg" />
</div>
<div :class="$style.rectangleGroup">
<div :class="$style.groupInner" />
<div :class="$style.groupParent">
<div :class="$style.rectangleContainer">
<div :class="$style.groupChild1" />
<div :class="$style.div1">โครงสรางอตรากำล</div>
</div>
<div :class="$style.groupDiv">
<div :class="$style.groupChild1" />
<div :class="$style.div1">ทะเบยนประว</div>
</div>
<div :class="$style.rectangleParent1">
<div :class="$style.groupChild1" />
<div :class="$style.div1">ทะเบยนประวกจาง</div>
</div>
<div :class="$style.rectangleParent2">
<div :class="$style.groupChild1" />
<div :class="$style.div1">สรรหาบคคล</div>
</div>
<div :class="$style.rectangleParent3">
<div :class="$style.groupChild1" />
<div :class="$style.div1">ออกคำส</div>
</div>
<div :class="$style.rectangleParent4">
<div :class="$style.groupChild1" />
<div :class="$style.div1">บรรจ แตงต าย โอน</div>
</div>
<div :class="$style.rectangleParent5">
<div :class="$style.groupChild1" />
<div :class="$style.div1">นจากราชการ</div>
</div>
<div :class="$style.rectangleParent6">
<div :class="$style.groupChild1" />
<div :class="$style.div1">เครองราชอสรยาภรณ</div>
</div>
<div :class="$style.rectangleParent7">
<div :class="$style.groupChild1" />
<div :class="$style.div1">การลา</div>
</div>
<div :class="$style.rectangleParent8">
<div :class="$style.groupChild1" />
<div :class="$style.div10"></div>
</div>
<div :class="$style.rectangleParent9">
<div :class="$style.groupChild1" />
<div :class="$style.div1">ความสามารถพเศษ</div>
</div>
<div :class="$style.rectangleParent10">
<div :class="$style.groupChild12" />
<div :class="$style.div12">อมลหล</div>
</div>
<div :class="$style.rectangleParent11">
<div :class="$style.groupChild1" />
<div :class="$style.div10">ปฏราชการพเศษ</div>
</div>
<div :class="$style.rectangleParent12">
<div :class="$style.groupChild1" />
<div :class="$style.div10">นทกวนทไมไดบเงนเดอนฯ</div>
</div>
<div :class="$style.rectangleParent13">
<div :class="$style.groupChild1" />
<div :class="$style.div1">นๆ</div>
</div>
<div :class="$style.rectangleParent14">
<div :class="$style.groupChild1" />
<div :class="$style.div1">เอกสารหลกฐาน</div>
</div>
</div>
</div>
<div :class="$style.captionParent">
<div :class="$style.caption1">
<span>ระบบ</span>
<span :class="$style.span">ทรพยากรบคคล</span>
</div>
<div :class="$style.caption2">Support</div>
<div :class="$style.lineDiv" />
</div>
<div :class="$style.div17">เราจะชวยคณไดอยางไร</div>
<div :class="$style.div18">อมลหล</div>
<img :class="$style.rectangleIcon" alt="" src="/rectangle-3464303@2x.png" />
<div :class="$style.groupContainer">
<div :class="$style.parent">
<div :class="$style.div19">ขอบเขตของระบบขอม</div>
<div :class="$style.wrapper">
<div :class="$style.div20">
<ul :class="$style.ul">
<li :class="$style.li">
ระบบจดการขอมลหลกเกยวกบทรพยากรบคคลมขอบเขตทรวมถงขอมลทงหมดทเกยวของกบพนกงานในองคกร
อมลเกยวกบบคคล, อมลโครงสราง
</li>
</ul>
<p :class="$style.p">
หนวยงาน, อมลขาราชการ อมลลกจาง, นลา, และขอมลอนๆ
เกยวของกบการจดการทรพยากรบคคล
</p>
</div>
</div>
</div>
<div :class="$style.frameParent">
<div :class="$style.container">
<div :class="$style.div21">
<ul :class="$style.ul">
<li :class="$style.li">
<span :class="$style.span1"
>การเขาถงและบรหารจดการขอม</span
>
<span :class="$style.span2"> : </span>
<span
>การตรวจสอบและรกษาความปลอดภยในการเขาถงขอม การสราง,
การอปเดต, การลบขอมลตามความเหมาะสม
และการจดการสทธในการเขาถงขอมลของบคคลในองคกร</span
>
</li>
<li :class="$style.li">
<span :class="$style.span1">การดแลรกษาความเสถยร :</span>
<span :class="$style.span4">
การควบคมฐานขอม
หรอระบบใหประสทธภาพและเสถยรภาพตลอดเวลา</span
>
</li>
<li>
<span :class="$style.span1">การสำรองขอม :</span>
<span :class="$style.span2"> </span>
<span :class="$style.span4"
>การสำรองขอมลเพอปองกนขอมลไมญหายในกรณของภยคกคามหรอปญหาทางเทคนคทอาจเกดข</span
>
</li>
</ul>
</div>
</div>
<div :class="$style.div22">นตอนการดแลระบบ</div>
</div>
<div :class="$style.frameChild" />
<div :class="$style.frameItem" />
<div :class="$style.group">
<div :class="$style.div23">คำถามทพบบอย</div>
<div :class="$style.rectangleParent15">
<div :class="$style.groupChild17" />
<img :class="$style.layer1Icon" alt="" src="/layer-1.svg" />
<div :class="$style.div24">
เขาถงและปรบปรงขอมลสวนตวของพนกงานคออยางไร?
</div>
<div :class="$style.div25">
<ul :class="$style.ul">
<li :class="$style.li">
พนกงานสามารถเขาถงและปรบปรงขอมลสวนตวของตนไดานระบบสวนบคคลบนพอรลลของพนกงาน
การเขาถงขอมลสวนตวจะตองผานการ
</li>
</ul>
<p :class="$style.p">ตรวจสอบตวตนและการสอบถามเพอความปลอดภ</p>
</div>
</div>
<div :class="$style.rectangleParent16">
<div :class="$style.groupChild18" />
<img :class="$style.layer1Icon" alt="" src="/layer-11.svg" />
<div :class="$style.div24">
อมลทญหายหรอขอมลทกลบโดยไมงใจหรอไม?
</div>
<div :class="$style.div27">
<ul :class="$style.ul">
ทางเรามมาตรการความปลอดภยทเขมงวดเพอปองกนการสญหายขอม
และมการบนทกการเขาถงและการดำเนนการกบขอมลทกคร
</ul>
</div>
</div>
<div :class="$style.rectangleParent17">
<div :class="$style.groupChild19" />
<img :class="$style.layer1Icon" alt="" src="/layer-12.svg" />
<div :class="$style.div24">
มาตรการความปลอดภยในการจดเกบและใชอมลบคคลหรอไม?
</div>
<div :class="$style.div29">
<ul :class="$style.ul">
<li :class="$style.li">
เรามมาตรการความปลอดภยทเขมงวดเพอปองกนการเขาถงขอมลบคคลภายนอกโดยไมไดบอนญาต
การใชเทคโนโลยการเขารหสและระบบการ
</li>
</ul>
<p :class="$style.p">ตรวจสอบตวตนเพอปกปองขอม</p>
</div>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "Frame",
});
</script>
<style module>
.groupChild {
position: absolute;
top: 89px;
left: 0px;
background-color: var(--color-white);
box-shadow: 0px 4px 20px rgba(224, 235, 240, 0.4);
width: 1920px;
height: 89px;
}
.inner {
position: absolute;
top: 0px;
left: 0px;
width: 1920px;
height: 89px;
}
.child {
position: absolute;
top: 396px;
left: calc(50% - 422px);
border-radius: var(--br-5xs);
background-color: var(--color-white);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1166px;
height: 709px;
}
.item {
position: absolute;
top: 396px;
left: calc(50% - 422px);
border-radius: var(--br-5xs) var(--br-5xs) 0px 0px;
background-color: var(--color-lightseagreen);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1166px;
height: 59px;
}
.rectangleDiv {
position: absolute;
top: 89px;
left: calc(50% - 960px);
background-color: var(--color-darkslategray-100);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1920px;
height: 262px;
}
.image1Icon {
position: absolute;
top: 90px;
left: 0px;
width: 1921px;
height: 261px;
object-fit: cover;
}
.child1 {
position: absolute;
top: 90px;
left: 0px;
background: linear-gradient(
90deg,
#273238 15.1%,
#273238 30.73%,
rgba(39, 50, 56, 0.91) 41.67%,
rgba(39, 50, 56, 0.87) 50%,
rgba(39, 50, 56, 0.69) 66.67%,
rgba(39, 50, 56, 0.33) 77.08%,
rgba(39, 50, 56, 0) 88.02%
);
width: 1920px;
height: 261px;
}
.groupItem {
position: absolute;
height: 100%;
top: 0%;
bottom: 0%;
left: calc(50% - 608.5px);
border-radius: 10px;
background-color: #f8f8f8;
border: 1px solid var(--input-outline-default);
box-sizing: border-box;
width: 1217px;
}
.caption {
position: absolute;
top: 25.81%;
left: 6.14%;
line-height: 150%;
}
.vectorIcon {
position: absolute;
height: 38.71%;
width: 2%;
top: 30.65%;
right: 95.64%;
bottom: 30.65%;
left: 2.37%;
max-width: 100%;
overflow: hidden;
max-height: 100%;
}
.rectangleParent {
position: absolute;
height: 5.17%;
top: 18.08%;
bottom: 76.75%;
left: calc(50% - 608px);
width: 1217px;
color: rgba(116, 116, 116, 0.52);
font-family: var(--font-noto-sans);
}
.groupInner {
position: absolute;
top: 0px;
left: calc(50% - 145.5px);
border-radius: var(--br-5xs);
background-color: var(--color-white);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 291px;
height: 554px;
}
.groupChild1 {
position: absolute;
top: 0px;
left: 0px;
border-radius: var(--br-8xs);
background-color: var(--color-whitesmoke-100);
width: 274px;
height: 44px;
opacity: 0;
}
.div1 {
position: absolute;
top: 10.1px;
left: 26px;
line-height: 24px;
font-weight: 300;
display: inline-block;
width: 161px;
height: 24.52px;
}
.rectangleContainer {
position: absolute;
top: 50px;
left: 0px;
width: 274px;
height: 44px;
}
.groupDiv {
position: absolute;
top: 99px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent1 {
position: absolute;
top: 148px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent2 {
position: absolute;
top: 198px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent3 {
position: absolute;
top: 247px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent4 {
position: absolute;
top: 296px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent5 {
position: absolute;
top: 345px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent6 {
position: absolute;
top: 394px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent7 {
position: absolute;
top: 443px;
left: 0px;
width: 274px;
height: 44px;
}
.div10 {
position: absolute;
top: 10.1px;
left: 26px;
line-height: 24px;
font-weight: 300;
}
.rectangleParent8 {
position: absolute;
top: 493px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent9 {
position: absolute;
top: 689px;
left: 0px;
width: 274px;
height: 44px;
}
.groupChild12 {
position: absolute;
top: 0px;
left: 0px;
border-radius: var(--br-8xs);
background-color: rgba(0, 137, 226, 0.04);
border: 1px solid #fafafa;
box-sizing: border-box;
width: 274px;
height: 44px;
}
.div12 {
position: absolute;
top: 13px;
left: 26px;
line-height: 24px;
font-weight: 500;
display: inline-block;
width: 130px;
height: 24.52px;
}
.rectangleParent10 {
position: absolute;
top: 0px;
left: 0px;
width: 274px;
height: 44px;
color: #0089e2;
}
.rectangleParent11 {
position: absolute;
top: 738px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent12 {
position: absolute;
top: 787px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent13 {
position: absolute;
top: 836px;
left: 0px;
width: 274px;
height: 44px;
}
.rectangleParent14 {
position: absolute;
top: 885px;
left: 0px;
width: 274px;
height: 44px;
}
.groupParent {
position: absolute;
top: 7.09px;
left: 8px;
width: 274px;
height: 538.29px;
overflow: auto;
}
.rectangleGroup {
position: absolute;
top: 396px;
left: calc(50% - 744px);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
width: 291px;
height: 554px;
font-size: var(--body-2-light-size);
}
.span {
color: var(--color-lightseagreen);
}
.caption1 {
position: absolute;
top: 0px;
left: 14px;
font-weight: 900;
display: inline-block;
width: 181px;
height: 24px;
}
.caption2 {
position: absolute;
top: 27px;
left: 14px;
font-size: 14px;
font-weight: 600;
color: #818181;
}
.lineDiv {
position: absolute;
top: 8px;
left: -1px;
border-right: 2px solid var(--text-body-black);
box-sizing: border-box;
width: 2px;
height: 38px;
}
.captionParent {
position: absolute;
top: 20px;
left: 205px;
width: 195px;
height: 48px;
color: var(--color-darkslategray-100);
}
.div17 {
position: absolute;
top: 162px;
left: 352px;
font-size: 32px;
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 600;
color: var(--color-white);
}
.div18 {
position: absolute;
top: 415px;
left: 588px;
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 600;
color: var(--color-white);
}
.rectangleIcon {
position: absolute;
top: 25px;
left: 142px;
border-radius: 126px;
width: 44px;
height: 44px;
object-fit: cover;
}
.div19 {
position: absolute;
top: 0px;
left: 0px;
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 600;
}
.li {
margin-bottom: 0px;
}
.ul {
margin: 0;
padding-left: var(--padding-2xl);
}
.p {
margin: 0;
}
.div20 {
position: absolute;
top: 10px;
left: 24px;
letter-spacing: 0.03em;
line-height: 24px;
display: inline-block;
width: 1032px;
}
.wrapper {
position: absolute;
top: 49px;
left: 0px;
border-radius: var(--br-5xs);
background-color: var(--color-whitesmoke-200);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1070px;
height: 68px;
overflow: hidden;
font-size: var(--font-inherit);
font-family: var(--font-inherit);
}
.parent {
position: absolute;
top: 0px;
left: 27px;
width: 1070px;
height: 117px;
}
.span1 {
font-weight: 600;
font-family: var(--body-2-light);
}
.span2 {
font-weight: 500;
font-family: var(--body-2-light);
}
.span4 {
font-family: var(--body-2-light);
}
.div21 {
position: absolute;
top: 10px;
left: 26px;
letter-spacing: 0.03em;
line-height: 24px;
display: inline-block;
width: 1014px;
}
.container {
position: absolute;
top: 49px;
left: 0px;
border-radius: var(--br-5xs);
background-color: var(--color-whitesmoke-200);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
border: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1070px;
height: 116px;
overflow: hidden;
}
.div22 {
position: absolute;
top: 0px;
left: 0px;
font-size: var(--font-size-lg);
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 600;
}
.frameParent {
position: absolute;
top: 187px;
left: 27px;
width: 1070px;
height: 165px;
font-size: var(--font-inherit);
}
.frameChild {
position: absolute;
top: 157.5px;
left: -0.5px;
border-top: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1121px;
height: 1px;
}
.frameItem {
position: absolute;
top: 390.5px;
left: 1.5px;
border-top: 1px solid var(--color-whitesmoke-300);
box-sizing: border-box;
width: 1121px;
height: 1px;
}
.div23 {
position: absolute;
top: 0px;
left: 2px;
font-size: var(--font-size-lg);
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 600;
color: var(--text-body-black);
}
.groupChild17 {
position: absolute;
top: 0px;
left: calc(50% - 535px);
border-radius: var(--br-5xs);
background-color: var(--color-whitesmoke-200);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
width: 1070px;
height: 104px;
}
.layer1Icon {
position: absolute;
top: 19px;
left: 27px;
width: 16px;
height: 16px;
overflow: hidden;
}
.div24 {
position: absolute;
top: 14px;
left: 61px;
letter-spacing: 0.03em;
line-height: 24px;
font-weight: 500;
display: inline-block;
width: 819px;
}
.div25 {
position: absolute;
top: 47px;
left: 52px;
font-size: var(--font-inherit);
letter-spacing: 0.03em;
line-height: 24px;
font-family: var(--font-inherit);
color: var(--text-body-black);
display: inline-block;
width: 970px;
height: 51px;
}
.rectangleParent15 {
position: absolute;
top: 49px;
left: calc(50% - 535px);
width: 1070px;
height: 104px;
}
.groupChild18 {
position: absolute;
top: 0px;
left: calc(50% - 535px);
border-radius: var(--br-5xs);
background-color: var(--color-whitesmoke-200);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
width: 1070px;
height: 86px;
}
.div27 {
position: absolute;
top: 47px;
left: 52px;
font-size: var(--font-inherit);
letter-spacing: 0.03em;
line-height: 24px;
font-family: var(--font-inherit);
color: var(--text-body-black);
display: inline-block;
width: 978px;
height: 25px;
}
.rectangleParent16 {
position: absolute;
top: 178px;
left: calc(50% - 535px);
width: 1070px;
height: 86px;
}
.groupChild19 {
position: absolute;
top: 0px;
left: calc(50% - 535px);
border-radius: var(--br-5xs);
background-color: var(--color-whitesmoke-200);
box-shadow: 0px 4px 22px rgba(200, 211, 219, 0.22);
width: 1070px;
height: 106px;
}
.div29 {
position: absolute;
top: 47px;
left: 52px;
font-size: var(--font-inherit);
letter-spacing: 0.03em;
line-height: 24px;
font-family: var(--font-inherit);
color: var(--text-body-black);
display: inline-block;
width: 978px;
height: 55px;
}
.rectangleParent17 {
position: absolute;
top: 289px;
left: calc(50% - 535px);
width: 1070px;
height: 106px;
}
.group {
position: absolute;
top: 424px;
left: 27px;
width: 1070px;
height: 395px;
font-size: var(--body-2-light-size);
color: var(--color-lightseagreen);
}
.groupContainer {
position: absolute;
top: 484px;
left: 561px;
width: 1122px;
height: 621px;
overflow: auto;
font-size: var(--font-size-lg);
}
.div {
position: relative;
background-color: #f7f9fa;
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
width: 100%;
height: 1200px;
text-align: left;
font-size: var(--font-size-xl);
color: var(--text-body-black);
font-family: var(--body-2-light);
}
</style>

View file

@ -1,85 +0,0 @@
<script setup lang="ts">
import commandsmain from "@/modules/01_manual/components/7_commands/71_main.vue"
import ehrtry from "@/modules/01_manual/components/7_commands/72_try.vue"
</script>
<template>
<div class="col-12 row">
<div
class="toptitle text-dark col-12 row items-center"
style="padding-top: 40px"
>
อการใชงานระบบจดการระบบสรรหา
</div>
<div class="row col-12 q-gutter-xs">
<div
id="recruitmain"
name="1"
class="row col-12 information"
style="padding-bottom: 60px"
>
<commandsmain />
</div>
<div
id="recruitSetting"
name="2"
class="row col-12 information"
style="padding-bottom: 60px"
>
<ehrtry />
</div>
<!-- <div
id="recruitManage"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
สอบแขงข
</div> -->
<div
id="recruitManage"
name="3"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitManage />
</div>
<div
id="recruitstati"
name="4"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitstati />
</div>
<div
id="recruitQualifiers"
name="5"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitQualifiers />
</div>
<div
id="recruitDisabilities"
name="6"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitDisabilities />
</div>
<div
id="recruitSelection"
name="7"
class="row col-12 information"
style="padding-bottom: 60px"
>
<recruitSelection />
</div>
</div>
</div>
</template>
<style scoped></style>

View file

@ -1,502 +1,9 @@
const viewLogin = () => import("@/modules/01_manual/components/1_login/view.vue")
const Mainlogin = () => import("@/modules/01_manual/components/1_login/01_Main.vue");
const MainLog = () => import("@/modules/01_manual/components/1_login/02_login.vue");
const Mainpass = () => import("@/modules/01_manual/components/1_login/03_Password.vue");
const Mainuser = () => import("@/modules/01_manual/components/1_login/04_newuser.vue");
const Mainlogout = () => import("@/modules/01_manual/components/1_login/05_logout.vue");
const Mainnoti = () => import("@/modules/01_manual/components/1_login/06_noti.vue");
const viewDatamain = () => import("@/modules/01_manual/components/2_data/view.vue")
const Datamain = () => import("@/modules/01_manual/components/2_data/21_Main.vue");
const Dataabout = () => import("@/modules/01_manual/components/2_data/22_About.vue");
const Datagov = () => import("@/modules/01_manual/components/2_data/23_Gov.vue");
const Dataofficer = () => import("@/modules/01_manual/components/2_data/24_Officer.vue");
const Dataemployee = () => import("@/modules/01_manual/components/2_data/25_Employee.vue");
const Datacalendar = () => import("@/modules/01_manual/components/2_data/26_Calendar.vue");
const Datalnsignia = () => import("@/modules/01_manual/components/2_data/27_Insignia.vue");
const viewStructure = () => import("@/modules/01_manual/components/3_Structure/view.vue")
const Structuremain = () => import("@/modules/01_manual/components/3_Structure/31_Main.vue");
const Structureposition = () => import("@/modules/01_manual/components/3_Structure/32_Position.vue");
const Structurestructure = () => import("@/modules/01_manual/components/3_Structure/33_Structure.vue");
const Structureorganchart = () => import("@/modules/01_manual/components/3_Structure/34_organchart.vue");
const Structurechartstru = () => import("@/modules/01_manual/components/3_Structure/35_chartstru.vue");
const Structureaccount2 = () => import("@/modules/01_manual/components/3_Structure/36_account2.vue");
const Structurereport = () => import("@/modules/01_manual/components/3_Structure/37_report.vue");
const Structurechartemploy = () => import("@/modules/01_manual/components/3_Structure/38_chartemploy.vue");
const viewRegist = () => import("@/modules/01_manual/components/4_registration/view.vue")
// const registmain = () => import("@/modules/01_manual/components/4_ registration/41_main.vue");
// const registfind = () => import("@/modules/01_manual/components/4_ registration/42_find.vue");
// const registdetail = () => import("@/modules/01_manual/components/4_ registration/43_detail.vue");
// const registedit = () => import("@/modules/01_manual/components/4_ registration/44_edit.vue");
// const registselect = () => import("@/modules/01_manual/components/4_ registration/45_select.vue");
// const registwindow = () => import("@/modules/01_manual/components/4_ registration/46_window.vue");
const viewRecruit = () => import("@/modules/01_manual/components/5_recruitment/view.vue")
const recruitmain = () => import("@/modules/01_manual/components/5_recruitment/51_main.vue");
const recruitsetting = () => import("@/modules/01_manual/components/5_recruitment/52_setting.vue");
const recruitmanagecompet = () => import("@/modules/01_manual/components/5_recruitment/53_managecompet.vue");
const recruitstaticompet = () => import("@/modules/01_manual/components/5_recruitment/54_staticompet.vue");
const recruitqualifiers = () => import("@/modules/01_manual/components/5_recruitment/55_qualifiers.vue");
const recruitdisabilities = () => import("@/modules/01_manual/components/5_recruitment/56_disabilities.vue");
const recruitselection = () => import("@/modules/01_manual/components/5_recruitment/57_selection.vue");
const employeehistorymain = () => import("@/modules/01_manual/components/6_employeehistory/61_main.vue");
const commandsmain = () => import("@/modules/01_manual/components/7_commands/71_main.vue");
const ehrtry = () => import("@/modules/01_manual/components/7_commands/72_try.vue");
/****** 1 ********/
import type { RouteRecordRaw } from "vue-router";
export default [
{
path: "/login",
name: "login",
component: viewLogin,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
path: "/manual/:name",
name: "Manual",
component: () => import("@/modules/01_manual/MainPage.vue"),
},
// {
// path: "/manual",
// name: "manual",
// component: Mainlogin,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
{
path: "/login/log",
name: "mainLog",
component: MainLog,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/login/password",
name: "mainpassword",
component: Mainpass,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/login/newuser",
name: "mainnewuser",
component: Mainuser,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/login/logout",
name: "mainlogout",
component: Mainlogout,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/login/noti",
name: "mainnoti",
component: Mainnoti,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
/****** 2 ********/
{
path: "/datamain",
name: "datamain",
component: viewDatamain,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/about",
name: "Dataabout",
component: Dataabout,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/gov",
name: "Datagov",
component: Datagov,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/officer",
name: "Dataofficer",
component: Dataofficer,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/employee",
name: "Dataemployee",
component: Dataemployee,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/calendar",
name: "Datacalendar",
component: Datacalendar,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Data/insignia",
name: "Datalnsignia",
component: Datalnsignia,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
/****** 3 ********/
{
path: "/structuremain",
name: "structuremain",
component: viewStructure,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Position",
name: "Structureposition",
component: Structureposition,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Structure",
name: "Structurestructure",
component: Structurestructure,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Organchart",
name: "Structureorganchart",
component: Structureorganchart,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Chartstru",
name: "Structurechartstru",
component: Structurechartstru,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Account2",
name: "Structureaccount2",
component: Structureaccount2,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Report",
name: "Structurereport",
component: Structurereport,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Structure/Chartemploy",
name: "Structurechartemploy",
component: Structurechartemploy,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
/****** 4 ********/
{
path: "/registrationmain",
name: "registmain",
component: viewRegist,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
// {
// path: "/Registration/find",
// name: "registfind",
// component: registfind,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
// {
// path: "/Registration/detail",
// name: "registdetail",
// component: registdetail,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
// {
// path: "/Registration/edit",
// name: "registedit",
// component: registedit,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
// {
// path: "/Registration/select",
// name: "registselect",
// component: registselect,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
// {
// path: "/Registration/window",
// name: "registwindow",
// component: registwindow,
// meta: {
// Auth: true,
// Key: [10],
// Role: "order",
// },
// },
/****** 5 ********/
{
path: "/recruitmain",
name: "recruitmain",
component: viewRecruit,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/setting",
name: "recruitsetting",
component: recruitsetting,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/managecompet",
name: "recruitmanagecompet",
component: recruitmanagecompet,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/staticompet",
name: "recruitstaticompet",
component: recruitstaticompet,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/qualifiers",
name: "recruitqualifiers",
component: recruitqualifiers,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/disabilities",
name: "recruitdisabilities",
component: recruitdisabilities,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Recruit/selection",
name: "recruitselection",
component: recruitselection,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Commandsmain",
name: "commandsmain",
component: commandsmain,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/Employeehistorymain",
name: "employeehistorymain",
component: employeehistorymain,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
},
{
path: "/ehrtry",
name: "ehrtry",
component: ehrtry,
meta: {
Auth: true,
Key: [10],
Role: "order",
},
}
];
] satisfies RouteRecordRaw[];