hrms-manual/src/modules/01_manual/components/2_data/21_Main.vue

142 lines
5.8 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref } from "vue";
const rightDrawerOpen = ref(false);
const text = ref("");
</script>
<template>
2023-09-11 12:10:00 +07:00
<!-- <div class="row col-12">
2023-09-08 18:12:08 +07:00
<div class="col-12">
<div class="toptitle text-dark col-12 row items-center">
อการใชงานระบบบรหารทรพยากรบคคลของกรงเทพมหานคร
2023-09-11 12:10:00 +07:00
</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>
2023-09-11 12:10:00 +07:00
<!-- </div>
</div> -->
</template>