fix:positionLevelName
This commit is contained in:
parent
a109289e1c
commit
3f318941ab
3 changed files with 20 additions and 2 deletions
|
|
@ -43,6 +43,7 @@ const formOccupation = ref<any>({});
|
|||
const formContact = ref<any>({});
|
||||
const status = ref<string>("");
|
||||
const rejectDetail = ref<string>("");
|
||||
const positionLevelName = ref<string>("");
|
||||
|
||||
/** ดึงข้อมูลสถานะ */
|
||||
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 () => {
|
|||
<div>
|
||||
<Profile
|
||||
:status="status"
|
||||
:positionLevelName="positionLevelName"
|
||||
v-model:formInformation="formInformation"
|
||||
v-model:formAddress="formAddress"
|
||||
v-model:formOccupation="formOccupation"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue