diff --git a/src/modules/01_exam/components/ExamFinished.vue b/src/modules/01_exam/components/ExamFinished.vue index 9f71380..3f83175 100644 --- a/src/modules/01_exam/components/ExamFinished.vue +++ b/src/modules/01_exam/components/ExamFinished.vue @@ -41,26 +41,26 @@
เลขประจำตัวประชาชน :
{{ citizenId }}
-
+
สถานที่สอบ :
{{ examLocation }}
-
ชั้นที่ :
+
คะแนน
{{ floor }}
-
+
diff --git a/src/modules/01_exam/components/ExamPayment.vue b/src/modules/01_exam/components/ExamPayment.vue index 85a313e..b42af70 100644 --- a/src/modules/01_exam/components/ExamPayment.vue +++ b/src/modules/01_exam/components/ExamPayment.vue @@ -6,11 +6,11 @@ - + โอนเงินผ่านมือถือชำระเงินค่าสมัครสอบผ่านสำนัก/หน่วยงาน อนุมัติหลังแจ้งการโอนภายใน 24 ชั่วโมง - + + + + โอนเงินผ่านทางเครื่อง ATM / เคาน์เตอร์ธนาคารชำระเงินค่าสมัครสอบผ่านธนาคารกรุงไทย อนุมัติหลังแจ้งการโอนภายใน 24 ชั่วโมง
diff --git a/src/views/MainLayout.vue b/src/views/MainLayout.vue index 706b6e3..76fecaa 100644 --- a/src/views/MainLayout.vue +++ b/src/views/MainLayout.vue @@ -77,6 +77,33 @@ const fetchStatus = async () => { }) } +const getFontColor = (val: string) => { + switch (val) { + case 'register': + return 'text-blue' + case 'checkRegister': + return 'text-orange' + case 'payment': + return 'text-blue' + case 'rejectRegister': + return 'text-red-12' + case 'checkPayment': + return 'text-orange' + case 'rejectPayment': + return 'text-red-12' + case 'checkSeat': + return 'text-blue' + case 'checkPoint': + return 'text-blue' + case 'done': + return 'text-green' + case 'waiver': + return 'text-orange' + default: + return '-' + } +} + /** * ดิงชื่อผู้ใช้งานจาก keycloak */ @@ -106,9 +133,12 @@ const fetchStatus = async () => { - + +
+ {{ statusCandidate(status) }}   +