diff --git a/src/modules/14_IDP/component/DialogDevelop.vue b/src/modules/14_IDP/component/DialogDevelop.vue index df7a80f..4c28974 100644 --- a/src/modules/14_IDP/component/DialogDevelop.vue +++ b/src/modules/14_IDP/component/DialogDevelop.vue @@ -181,7 +181,7 @@ async function createURLUpload(id: string, file: any) { const fileName = { fileName: file.name }; await http .post( - config.API.file("IDP", "หลักฐาน", id), + config.API.file("IDP", "ยื่นคำร้องขอเพิ่มข้อมูลการพัฒนารายบุคคล", id), { replace: false, fileList: fileName, diff --git a/src/modules/14_IDP/views/main.vue b/src/modules/14_IDP/views/main.vue index ba31100..1707fba 100644 --- a/src/modules/14_IDP/views/main.vue +++ b/src/modules/14_IDP/views/main.vue @@ -216,7 +216,7 @@ async function getListData() { function onDownloadFile(id: string) { showLoader(); http - .get(config.API.file("IDP", "หลักฐาน", id)) + .get(config.API.file("IDP", "ยื่นคำร้องขอเพิ่มข้อมูลการพัฒนารายบุคคล", id)) .then((res) => { if (res.data.length !== 0) { downloadUrl(id, res.data[0].fileName); @@ -240,7 +240,7 @@ function downloadUrl(id: string, fileName: string) { .get( config.API.fileByFile( "IDP", - "หลักฐาน", + "ยื่นคำร้องขอเพิ่มข้อมูลการพัฒนารายบุคคล", id, fileName )