diff --git a/src/components/Table.vue b/src/components/Table.vue index b81e171..4c9fa59 100644 --- a/src/components/Table.vue +++ b/src/components/Table.vue @@ -13,7 +13,7 @@ :editData="editData" /> -
+
{ .get(config.API.candidateCard(examId.value, positionId.value)) .then((res) => { const data = res.data.result - fullName.value = data.prefix + data.firstName + ' ' + data.lastName + fullName.value = data.prefix ? data.prefix : '' + data.firstName + ' ' + data.lastName examNumber.value = data.examIdenNumber citizenId.value = data.citizenId examSeat.value = data.seatNumber diff --git a/src/modules/01_exam/components/ExamFinished.vue b/src/modules/01_exam/components/ExamFinished.vue index 45135de..9094828 100644 --- a/src/modules/01_exam/components/ExamFinished.vue +++ b/src/modules/01_exam/components/ExamFinished.vue @@ -38,7 +38,7 @@
- + diff --git a/src/modules/01_exam/components/Form/Education.vue b/src/modules/01_exam/components/Form/Education.vue index 9430fdd..2908722 100644 --- a/src/modules/01_exam/components/Form/Education.vue +++ b/src/modules/01_exam/components/Form/Education.vue @@ -98,7 +98,7 @@ autoApply :enableTimePicker="false" week-start="0" - :max-date="new Date()" + :max-date="dateCondition" :disabled="!(status == 'register' || status == 'rejectRegister')" > diff --git a/src/modules/01_exam/components/Form/Information.vue b/src/modules/01_exam/components/Form/Information.vue index a17a932..9c2b059 100644 --- a/src/modules/01_exam/components/Form/Information.vue +++ b/src/modules/01_exam/components/Form/Information.vue @@ -67,7 +67,7 @@ /> -->
- --> + +
@@ -127,7 +147,7 @@ />
- --> +
@@ -214,23 +253,21 @@ + + + + +
@@ -149,6 +169,7 @@ const candidateCheck = async () => { .get(config.API.candidateCheckCreate(examId.value, positionId.value)) .then(async (res) => { const data = res.data.result + storeExam.examInfo = data storeExam.consend = data.consend editorCondition.value = data.editorCondition editorConfirm.value = data.editorConfirm @@ -262,6 +283,7 @@ const fetchPeriodExam = async () => { yearly.value = data.year position.value = data.position positionLevel.value = data.positionLevel + storeExam.educationLevel = data.educationLevel || '' }) .catch((e) => { messageError($q, e)