From d14bfa6790ccff2345deb0275636c4af062cb496 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Sat, 29 Apr 2023 10:25:54 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=A5=E0=B8=B3=E0=B8=94=E0=B8=B1=E0=B8=9A?= =?UTF-8?q?=E0=B8=97=E0=B8=B5=E0=B9=88=E0=B8=AA=E0=B8=AD=E0=B8=9A=E0=B9=84?= =?UTF-8?q?=E0=B8=94=E0=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/01_exam/components/ExamCard.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/01_exam/components/ExamCard.vue b/src/modules/01_exam/components/ExamCard.vue index 434c651..cc473c5 100644 --- a/src/modules/01_exam/components/ExamCard.vue +++ b/src/modules/01_exam/components/ExamCard.vue @@ -71,6 +71,10 @@ examResultinscore }} +
ลำดับที่สอบได้
+
+ {{ number }} +
วันหมดอายุบัญชีสอบคัดเลือก
{{ score_expired == null ? '' : date2Thai(score_expired) }} @@ -132,6 +136,7 @@ const scoreSum = ref(null) const examResultinscore = ref('') const avatar = ref('') const score_expired = ref(new Date()) +const number = ref('') onMounted(async () => { await fetchStatus() @@ -173,6 +178,7 @@ const fetchStatus = async () => { examResultinscore.value = data.pass avatar.value = data.avatar score_expired.value = new Date(data.announcementDate) + number.value = data.number }) .catch(() => { // acceptTermOfUse.value = false