fix: 帮助文档文件名称指定5G核心网网管操作手册.pdf

This commit is contained in:
TsMask
2024-02-27 10:24:38 +08:00
parent 073f17b61f
commit f19e5e48f3
3 changed files with 3 additions and 3 deletions

View File

@@ -1680,6 +1680,7 @@ export default {
},
tool: {
help: {
fileName: "5G Core Network Network Management Operations Manual.pdf",
download: "Download",
pdfViewer: "In-browser preview",
pdfViewerErr: "Sorry, your browser does not support PDF preview!",

View File

@@ -1680,6 +1680,7 @@ export default {
},
tool: {
help: {
fileName: "5G核心网网管操作手册.pdf",
download: "下载",
pdfViewer: "浏览器内预览",
pdfViewerErr: "很抱歉,您的浏览器不支持 PDF 预览!",

View File

@@ -70,9 +70,7 @@ function fnDownload() {
fetch(url)
.then(response => response.blob())
.then(blob => {
let fileName = url.substring(url.lastIndexOf('/') + 1);
fileName = fileName.split('?')[0];
saveAs(blob, fileName);
saveAs(blob, t('views.tool.help.fileName'));
})
.catch(error => {
console.error('Error:', error);