diff --git a/src/modules/03_recruiting/views/01_compete/DetailEx.vue b/src/modules/03_recruiting/views/01_compete/DetailEx.vue index db2c5ab85..4292fffaf 100644 --- a/src/modules/03_recruiting/views/01_compete/DetailEx.vue +++ b/src/modules/03_recruiting/views/01_compete/DetailEx.vue @@ -27,6 +27,8 @@ const scoreAFull = ref(""); const scoreA = ref(""); const scoreBFull = ref(""); const scoreB = ref(""); +const scoreDFull = ref(""); +const scoreD = ref(""); const scoreCFull = ref(""); const scoreC = ref(""); const scoreSumFull = ref(""); @@ -38,6 +40,7 @@ const mixin = useCounterMixin(); const { messageError, showLoader, hideLoader } = mixin; const examID = ref(""); const prefix = ref(""); +const TypeTest = ref(""); const fullname = ref(""); const importId = ref(route.params.id as string); // Period Import Id const examId = ref(route.params.examId as string); // เลขประจำตัวสอบ @@ -66,6 +69,8 @@ async function fetchData() { examAttribute.value = data.examAttribute; number.value = data.number; examOrder.value = data.examOrder; + TypeTest.value = data.TypeTest; + score_expired.value = data.scoreExpire; if (data.scoreResult != null) { scoreAFull.value = data.scoreResult.scoreAFull; @@ -77,6 +82,8 @@ async function fetchData() { scoreSumFull.value = data.scoreResult.scoreSumFull; scoreSum.value = data.scoreResult.scoreSum; examResultinscore.value = data.scoreResult.examResult; + scoreDFull.value = data.scoreResult.scoreDFull; + scoreD.value = data.scoreResult.scoreD; } isData.value = true; } @@ -169,82 +176,82 @@ onMounted(async () => { เลขประจำตัวประชาชน
- {{ profile_id }} + {{ profile_id ? profile_id : "-" }}
คำนำหน้าชื่อนาม
- {{ prefix }} + {{ prefix ? prefix : "-" }}
ชื่อ-นามสกุล
- {{ fullname }} + {{ fullname ? fullname : "-" }}
วัน/เดือน/ปี เกิด
- {{ birthdate }} + {{ birthdate ? birthdate : "-" }}
เพศ
- {{ gender }} + {{ gender ? gender : "-" }}
ตำแหน่งที่สมัคร
- {{ position_name }} + {{ position_name ? position_name : "-" }}
สถานศึกษา
- {{ university }} + {{ university ? university : "-" }}
วุฒิการศึกษา
- {{ degree }} + {{ degree ? degree : "-" }}
สาขาวิชาเอก
- {{ major }} + {{ major ? major : "-" }}
ครั้งที่ประกาศรับสมัคร
- {{ examOrder }} + {{ examOrder ? examOrder : "-" }}
ใบอนุญาตประกอบวิชาชีพ วัน เดือน ปีที่ได้รับ
- {{ cert_issuedate }} + {{ cert_issuedate ? cert_issuedate : "-" }}
สถานะการคัดกรองคุณสมบัติ
- {{ examAttribute }} + {{ examAttribute ? examAttribute : "-" }}
@@ -297,10 +304,24 @@ onMounted(async () => { ดาวน์โหลดผลคะแนน -
-
+
+
ประเภท
+ +
+ ภาคความรู้ความสามารถทั่วไป (ภาค ก) +
+
+ {{ TypeTest == "bangkok" ? "กทม." : "ก.พ." }} +
+
+
+ +
+
+ +
คะแนนเต็ม
@@ -310,8 +331,9 @@ onMounted(async () => {
- -
ภาค ก
+
+ ภาคความรู้ความสามารถที่ใช้เฉพาะตำแหน่ง (ภาค ข) +
{{ scoreAFull }}
@@ -320,30 +342,35 @@ onMounted(async () => {
คะแนน
-
ภาค ข
-
- {{ scoreBFull }} +
+ ภาคความเหมาะสมกับตำแหน่ง (ภาค ค) +
+ +
+ - ทดสอบสมรรถนะ และทดสอบจิตวิทยาฯ
- {{ scoreB }} + {{ scoreCFull ? scoreCFull : "-" }} +
+
+ {{ scoreC ? scoreC : "-" }}
คะแนน
- -
ภาค ค
+
- สัมภาษณ์
- {{ scoreCFull }} + {{ scoreDFull ? scoreDFull : "-" }}
- {{ scoreC }} + {{ scoreD ? scoreD : "-" }}
คะแนน
รวมทั้งหมด
- {{ scoreSumFull }} + {{ scoreSumFull ? scoreSumFull : "-" }}
- {{ scoreSum }} + {{ scoreSum ? Number(scoreSum).toFixed(2) : "-" }}
คะแนน
@@ -363,14 +390,14 @@ onMounted(async () => {
ลำดับที่สอบได้
- {{ number }} + {{ number ? number : "-" }}
วันหมดอายุบัญชีสอบแข่งขัน
- {{ score_expired }} + {{ score_expired ? score_expired : "-" }}