+
-
+
รอเจ้าหน้าที่จัดที่นั่งสอบ
-
-
-
- บัตรประจำตัวผู้สอบ
-
-
- พิมพ์บัตรประจำตัวผู้สอบ
-
-
-
-
-
ชื่อ :
-
{{ fullName }}
-
-
-
เลขประจำตัวประชาชน :
-
{{ citizenId }}
-
-
-
เลขประจำตัวสอบ :
-
{{ examNumber }}
-
-
-
-
เลขที่นั่งสอบ :
-
{{ examSeat }}
-
-
-
-
ผลการสอบ
-
-
ประเภท
-
คะแนนเต็ม
-
คะแนนที่ได้
-
-
-
ภาค ข
-
- {{ scoreBFull }}
-
-
- {{ scoreB }}
-
-
คะแนน
-
-
ภาค ค
-
- {{ scoreCFull }}
-
-
- {{ scoreC }}
-
-
คะแนน
-
-
รวมทั้งหมด
-
- {{ scoreSumFull }}
-
-
- {{ scoreSum }}
-
-
คะแนน
-
-
ผลการสอบ
-
- {{
- examResultinscore
- }}
-
-
-
-
-
-
-
-
-
-
-
+
-
@@ -147,6 +45,7 @@ import { onMounted, ref } from 'vue'
import http from '@/plugins/http'
import config from '@/app.config'
import { useRoute } from 'vue-router'
+import ExamCard from '@/modules/01_exam/components/ExamCard.vue'
const props = defineProps({
fetchStep: {
@@ -214,13 +113,30 @@ const fetchStatus = async () => {
})
}
-const download = () => {
- window.print()
-}
-
const getClass = (val: string) => {
return val == 'done' || val == 'checkPoint' ? 'bg-green-1' : 'bg-yellow-2'
}
-
+