diff --git a/src/modules/05_leave/componenst/Forms/01_SickForm.vue b/src/modules/05_leave/componenst/Forms/01_SickForm.vue
index a9a018c..95627ea 100644
--- a/src/modules/05_leave/componenst/Forms/01_SickForm.vue
+++ b/src/modules/05_leave/componenst/Forms/01_SickForm.vue
@@ -1,4 +1,9 @@
+
+
+
+ ลาพักผ่อน
+
+ - จำนวนวันลาพักผ่อนสะสม จากปีที่ผ่านมา (Auto)
+ - จำนวนวันลาพักผ่อนประจำปีปัจจุบัน (Auto)
+ - ลาตั้งแต่วันที่
+ - ลาถึงวันที่
+ - จำนวนวันที่ลา (frontend คำนวนให้ Auto)
+ - ตัวเลือกให้ลาครึ่งวันเช้า หรือครึ่งวันบ่ายได้
+ - ที่อยู่ที่ติดต่อได้ระหว่างลา (textarea)
+ - หมายเลขโทรศัพท์
+ - รายละเอียด (ไม่บังคับกรอก)
+ - เอกสารประกอบ
+
+
+
diff --git a/src/modules/05_leave/views/SampleForm.vue b/src/modules/05_leave/views/SampleForm.vue
index 8787429..5950011 100644
--- a/src/modules/05_leave/views/SampleForm.vue
+++ b/src/modules/05_leave/views/SampleForm.vue
@@ -13,10 +13,14 @@ const typeOption = reactive([
{ id: 4, name: "ลาไปช่วยเหลือภริยาที่คลอดบุตร" },
]);
+async function onSubmit() {
+
+}
+
watch(
() => type.value,
() => {
- // save store
+ // save store
console.log("ประเภทการลา===>", type.value);
}
);
@@ -39,9 +43,9 @@ watch(
-
diff --git a/src/views/MainLayout.vue b/src/views/MainLayout.vue
index 1cec21a..09aca69 100644
--- a/src/views/MainLayout.vue
+++ b/src/views/MainLayout.vue
@@ -77,12 +77,21 @@ const doLogout = () => {