diff --git a/src/modules/03_recruiting/components/Education.vue b/src/modules/03_recruiting/components/Education.vue index fe8553521..436c083ff 100644 --- a/src/modules/03_recruiting/components/Education.vue +++ b/src/modules/03_recruiting/components/Education.vue @@ -31,6 +31,10 @@ const props = defineProps({ type: Array as PropType, required: true, }, + positionLevelName: { + type: String, + required: false, + }, }); const $q = useQuasar(); @@ -125,7 +129,10 @@ const getClass = (val: boolean) => {
-
+
{ :label="`${'ชื่อปริญญา'}`" />
-
+
({}); const formContact = ref({}); const status = ref(""); const rejectDetail = ref(""); +const positionLevelName = ref(""); /** ดึงข้อมูลสถานะ */ async function fetchStatus() { @@ -53,6 +54,7 @@ async function fetchStatus() { const data = res.data.result; status.value = data.status; rejectDetail.value = data.rejectDetail; + positionLevelName.value = data?.positionExam?.positionLevelName; }) .catch((e) => { messageError($q, e); @@ -346,6 +348,7 @@ onMounted(async () => {