Compare commits

..

No commits in common. "b4a3a5b72e6e7603182a5e9a44d023ae3833e5e1" and "24c27d5efbe43bb00a9bc6004267e091598ea282" have entirely different histories.

4 changed files with 120 additions and 110 deletions

View File

@ -25,17 +25,13 @@
class="result-item" class="result-item"
> >
<div class="content"> <div class="content">
<p class="result-title subtitle">{{ item.title }}</p> <a :href="item.url" class="result-title subtitle">{{ item.title }}</a>
<p class="result-description content-text">{{ item.description }}</p> <p class="result-description content-text">{{ item.description }}</p>
</div> </div>
<div class="pdf-icon">
<div <a :href="item.url" target="_blank">
class="pdf-icon" <img src="@/assets/image/pdf.png" alt="PDF" />
@click="downloadPdf(item.url)" </a>
style="color: #2979ff; cursor: pointer"
>
<img src="@/assets/image/pdf.png" alt="PDF" />
{{ t("financialinformation.quarterlyresults.download") }}
</div> </div>
</div> </div>
</div> </div>
@ -345,31 +341,6 @@ const handleSearch = () => {
// //
console.log("搜索:", searchQuery.value); console.log("搜索:", searchQuery.value);
}; };
const downloadPdf = async (pdfResource, filename = "") => {
try {
// PDF
const response = await fetch(pdfResource);
const blob = await response.blob();
// Blob URL
const blobUrl = URL.createObjectURL(blob);
//
const a = document.createElement("a");
a.href = blobUrl;
a.download = filename || pdfResource.split("/").pop() || "download.pdf";
//
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
// Blob URL
URL.revokeObjectURL(blobUrl);
} catch (error) {
console.error("下载PDF文件失败:", error);
}
};
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.title { .title {
@ -416,7 +387,7 @@ const downloadPdf = async (pdfResource, filename = "") => {
.result-item { .result-item {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: flex-start;
padding: 15px 0; padding: 15px 0;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
} }
@ -430,6 +401,10 @@ const downloadPdf = async (pdfResource, filename = "") => {
text-decoration: none; text-decoration: none;
display: block; display: block;
margin-bottom: 5px; margin-bottom: 5px;
&:hover {
text-decoration: underline;
}
} }
.result-description { .result-description {

View File

@ -25,16 +25,13 @@
class="result-item" class="result-item"
> >
<div class="content"> <div class="content">
<p class="result-title subtitle">{{ item.title }}</p> <a :href="item.url" class="result-title subtitle">{{ item.title }}</a>
<p class="result-description content-text">{{ item.description }}</p> <p class="result-description content-text">{{ item.description }}</p>
</div> </div>
<div <div class="pdf-icon">
class="pdf-icon" <a :href="item.url" target="_blank">
@click="downloadPdf(item.url)" <img src="@/assets/image/pdf.png" alt="PDF" />
style="color: #2979ff; cursor: pointer" </a>
>
<img src="@/assets/image/pdf.png" alt="PDF" />
{{ t("financialinformation.quarterlyresults.download") }}
</div> </div>
</div> </div>
</div> </div>
@ -344,32 +341,6 @@ const handleSearch = () => {
// //
console.log("搜索:", searchQuery.value); console.log("搜索:", searchQuery.value);
}; };
const downloadPdf = async (pdfResource, filename = "") => {
try {
// PDF
const response = await fetch(pdfResource);
const blob = await response.blob();
// Blob URL
const blobUrl = URL.createObjectURL(blob);
//
const a = document.createElement("a");
a.href = blobUrl;
a.download = filename || pdfResource.split("/").pop() || "download.pdf";
//
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
// Blob URL
URL.revokeObjectURL(blobUrl);
} catch (error) {
console.error("下载PDF文件失败:", error);
}
};
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.title { .title {
@ -416,7 +387,7 @@ const downloadPdf = async (pdfResource, filename = "") => {
.result-item { .result-item {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: flex-start;
padding: 15px 0; padding: 15px 0;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
} }
@ -430,6 +401,10 @@ const downloadPdf = async (pdfResource, filename = "") => {
text-decoration: none; text-decoration: none;
display: block; display: block;
margin-bottom: 5px; margin-bottom: 5px;
&:hover {
text-decoration: underline;
}
} }
.result-description { .result-description {

View File

@ -36,7 +36,7 @@
<img <img
src="@/assets/image/download.svg" src="@/assets/image/download.svg"
style="width: 20px; height: 20px" style="width: 20px; height: 20px"
@click="downloadPdf(item.url)" @click="handleDownload(item.url)"
/> />
</div> </div>
</div> </div>
@ -345,29 +345,55 @@ const handleSearch = () => {
console.log("搜索:", searchQuery.value); console.log("搜索:", searchQuery.value);
}; };
const downloadPdf = async (pdfResource, filename = "") => { const handleDownload = (url) => {
try { //
// PDF console.log("下载:", url);
const response = await fetch(pdfResource);
const blob = await response.blob();
// Blob URL // a
const blobUrl = URL.createObjectURL(blob); const link = document.createElement("a");
link.href = url;
// //
const a = document.createElement("a"); let fileName = url.split("/").pop();
a.href = blobUrl; //
a.download = filename || pdfResource.split("/").pop() || "download.pdf"; if (fileName.includes("?") || fileName.includes("_t=")) {
fileName = fileName.split(/[?_]/)[0];
}
link.download = fileName;
link.target = "_blank";
// //
document.body.appendChild(a); const isMobile =
a.click(); /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
document.body.removeChild(a); navigator.userAgent
);
// Blob URL if (isMobile) {
URL.revokeObjectURL(blobUrl); // 使fetchblob
} catch (error) { fetch(url)
console.error("下载PDF文件失败:", error); .then((response) => response.blob())
.then((blob) => {
const objectUrl = URL.createObjectURL(blob);
link.href = objectUrl;
document.body.appendChild(link);
link.click();
//
setTimeout(() => {
document.body.removeChild(link);
URL.revokeObjectURL(objectUrl);
}, 100);
})
.catch((error) => {
console.error("下载文件时出错:", error);
// fetch退window.open
window.open(url, "_blank");
});
} else {
//
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
} }
}; };
</script> </script>
@ -449,6 +475,10 @@ const downloadPdf = async (pdfResource, filename = "") => {
margin-bottom: 8px; margin-bottom: 8px;
font-size: 92px; font-size: 92px;
font-weight: 600; font-weight: 600;
&:hover {
text-decoration: underline;
}
} }
.result-description { .result-description {

View File

@ -36,7 +36,7 @@
<img <img
src="@/assets/image/download.svg" src="@/assets/image/download.svg"
style="width: 20px; height: 20px" style="width: 20px; height: 20px"
@click="downloadPdf(item.url)" @click="handleDownload(item.url)"
/> />
</div> </div>
</div> </div>
@ -345,29 +345,55 @@ const handleSearch = () => {
console.log("搜索:", searchQuery.value); console.log("搜索:", searchQuery.value);
}; };
const downloadPdf = async (pdfResource, filename = "") => { const handleDownload = (url) => {
try { //
// PDF console.log("下载:", url);
const response = await fetch(pdfResource);
const blob = await response.blob();
// Blob URL // a
const blobUrl = URL.createObjectURL(blob); const link = document.createElement("a");
link.href = url;
// //
const a = document.createElement("a"); let fileName = url.split("/").pop();
a.href = blobUrl; //
a.download = filename || pdfResource.split("/").pop() || "download.pdf"; if (fileName.includes("?") || fileName.includes("_t=")) {
fileName = fileName.split(/[?_]/)[0];
}
link.download = fileName;
link.target = "_blank";
// //
document.body.appendChild(a); const isMobile =
a.click(); /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
document.body.removeChild(a); navigator.userAgent
);
// Blob URL if (isMobile) {
URL.revokeObjectURL(blobUrl); // 使fetchblob
} catch (error) { fetch(url)
console.error("下载PDF文件失败:", error); .then((response) => response.blob())
.then((blob) => {
const objectUrl = URL.createObjectURL(blob);
link.href = objectUrl;
document.body.appendChild(link);
link.click();
//
setTimeout(() => {
document.body.removeChild(link);
URL.revokeObjectURL(objectUrl);
}, 100);
})
.catch((error) => {
console.error("下载文件时出错:", error);
// fetch退window.open
window.open(url, "_blank");
});
} else {
//
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
} }
}; };
</script> </script>
@ -449,6 +475,10 @@ const downloadPdf = async (pdfResource, filename = "") => {
margin-bottom: 8px; margin-bottom: 8px;
font-size: 50px; font-size: 50px;
font-weight: 600; font-weight: 600;
&:hover {
text-decoration: underline;
}
} }
.result-description { .result-description {