diff --git a/src/modules/05_placement/components/AppointMent/AppointMentDetail.vue b/src/modules/05_placement/components/AppointMent/AppointMentDetail.vue index b5b55e00a..2d8ef8a7b 100644 --- a/src/modules/05_placement/components/AppointMent/AppointMentDetail.vue +++ b/src/modules/05_placement/components/AppointMent/AppointMentDetail.vue @@ -45,6 +45,7 @@ const date = ref(null); //ดำรงตำแหน่งใน const reason = ref(""); //หมายเหตุ const status = ref(""); const fullName = ref(""); +const typeCommand = ref(""); //ประเภทคำสั่ง /** fetch รายละเอียดการแต่งตั้ง-เลื่อน-ย้าย*/ async function fecthappointmentByid() { @@ -61,6 +62,7 @@ async function fecthappointmentByid() { }`; status.value = data.status; + typeCommand.value = data.typeCommand; educationOld.value = data.educationOld ?? "-"; organizationPositionOld.value = data.organizationPositionOld; positionTypeOld.value = data.positionTypeOld; @@ -313,7 +315,10 @@ onMounted(() => {
-
+