Compare commits

..

No commits in common. "1cb83bd0c5cea43946ab4ac5eb237840da1b59c9" and "e67f064421fe53754e518035251108be0a116a30" have entirely different histories.

View file

@ -114,7 +114,7 @@ function onSearch() {
rows.value = onSearchDataTable(
filter.value,
rowsData.value,
columns.value ? columns.value : [],
columns.value ? columns.value : []
);
}
@ -132,27 +132,12 @@ async function onDownloadFile(id: string, profileId: string) {
"ประวัติการเปลี่ยนชื่อ-นามสกุล",
profileId,
id,
"เอกสารหลักฐาน",
),
"เอกสารหลักฐาน"
)
)
.then(async (res) => {
// const data = res.data.downloadUrl;
// window.open(data, "_blank");
console.log(res.data);
const downloadUrl = res.data.downloadUrl;
const response = await fetch(downloadUrl);
const blob = await response.blob();
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = `ประวัติการเปลี่ยนชื่อ-นามสกุล_`;
document.body.appendChild(link);
link.click();
setTimeout(() => {
document.body.removeChild(link);
URL.revokeObjectURL(url);
}, 100);
const data = res.data.downloadUrl;
window.open(data, "_blank");
})
.catch((err) => {
messageError($q, err);