diff --git a/src/modules/05_placement/components/AppointEmployee/AppointEmployeeDetail.vue b/src/modules/05_placement/components/AppointEmployee/AppointEmployeeDetail.vue index 41c3854b9..810983d6a 100644 --- a/src/modules/05_placement/components/AppointEmployee/AppointEmployeeDetail.vue +++ b/src/modules/05_placement/components/AppointEmployee/AppointEmployeeDetail.vue @@ -54,6 +54,7 @@ const reason = ref(""); //หมายเหตุ const status = ref(""); const fullName = ref(""); const mianData = ref(); +const typeCommand = ref(""); //ประเภทคำสั่ง /** fetch รายละเอียดการปรับระดับชั้นงานลูกจ้าง*/ async function fecthappointmentByid() { @@ -79,6 +80,7 @@ async function fecthappointmentByid() { salary.value = data.salary ?? 0; reason.value = data.reason; date.value = data.positionDate; + typeCommand.value = data.typeCommand; }) .catch((e) => { messageError($q, e); @@ -323,7 +325,10 @@ onMounted(async () => {
-
+