diff --git a/src/modules/06_retirement/components/ExitInterview/EditQuestion.vue b/src/modules/06_retirement/components/ExitInterview/EditQuestion.vue index 3cd65f632..616e7ee5e 100644 --- a/src/modules/06_retirement/components/ExitInterview/EditQuestion.vue +++ b/src/modules/06_retirement/components/ExitInterview/EditQuestion.vue @@ -264,19 +264,18 @@ const putData = () => { }; - console.log(body) - // showLoader(); - // http - // .put(config.API.questionExitInterview(), body) - // .then((res) => { - // success($q, "บันทึกข้อมูลสำเร็จ"); - // }) - // .catch((e) => { - // messageError($q, e); - // }) - // .finally(async () => { - // router.push(`/exit-Interview`) - // }); + showLoader(); + http + .put(config.API.questionExitInterview(), body) + .then((res) => { + success($q, "บันทึกข้อมูลสำเร็จ"); + }) + .catch((e) => { + messageError($q, e); + }) + .finally(async () => { + router.push(`/exit-Interview`) + }); }