From 88c0b41d514341714d24c75a3a6e1b826ee0f101 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Mon, 8 Dec 2025 15:59:23 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84?= =?UTF-8?q?=E0=B8=82=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B9=84=E0=B8=9F?= =?UTF-8?q?=E0=B8=A5=E0=B9=8C=E0=B8=9A=E0=B8=B1=E0=B8=99=E0=B8=97=E0=B8=B6?= =?UTF-8?q?=E0=B8=81=E0=B8=9C=E0=B8=A5=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=8A?= =?UTF-8?q?=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=9C=E0=B8=B9=E0=B9=89=E0=B8=9C?= =?UTF-8?q?=E0=B9=88=E0=B8=B2=E0=B8=99=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=9D?= =?UTF-8?q?=E0=B8=B6=E0=B8=81=E0=B8=AD=E0=B8=9A=E0=B8=A3=E0=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...นทึกผล.xlsx => บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx} | Bin src/modules/15_development/views/RecordPage.vue | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename public/{default-บันทึกผล.xlsx => บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx} (100%) diff --git a/public/default-บันทึกผล.xlsx b/public/บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx similarity index 100% rename from public/default-บันทึกผล.xlsx rename to public/บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx diff --git a/src/modules/15_development/views/RecordPage.vue b/src/modules/15_development/views/RecordPage.vue index 42c32102e..e519bc77a 100644 --- a/src/modules/15_development/views/RecordPage.vue +++ b/src/modules/15_development/views/RecordPage.vue @@ -143,8 +143,8 @@ function sendDevalopRegistry() { /** function ดาวน์โหลดไฟล์ต้นแบบ*/ function downloadFile() { const link = document.createElement("a"); - link.href = `${window.location.protocol}//${window.location.host}/default-บันทึกผล.xlsx`; - link.download = "default-บันทึกผล.xlsx"; + link.href = `${window.location.protocol}//${window.location.host}/บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx`; + link.download = "บันทึกผลรายชื่อผู้ผ่านการฝึกอบรม-template.xlsx"; document.body.appendChild(link); link.click(); document.body.removeChild(link);