This commit is contained in:
2026-06-07 12:52:10 +08:00
parent 59c09d6a33
commit 32f9299576

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>企业全景报告</title>
<title>企业综合报告</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
@@ -1001,7 +1001,6 @@
text-decoration: none;
}
}
</style>
</head>
<body>
@@ -1014,7 +1013,7 @@
<header class="header">
<div class="header-inner">
<div class="header-main">
<h1 class="report-title">企业全景报告</h1>
<h1 class="report-title">企业综合报告</h1>
<div class="subtitle">
<span id="entName">企业名称</span>
</div>
@@ -3578,7 +3577,7 @@
return resp.blob();
})
.then(function (blob) {
var fileName = "企业全景报告.pdf";
var fileName = "企业综合报告.pdf";
if (
reportData &&
reportData.entName &&
@@ -3586,7 +3585,7 @@
) {
fileName =
reportData.entName +
"_企业全景报告.pdf";
"_企业综合报告.pdf";
}
var url = window.URL.createObjectURL(blob);
var a = document.createElement("a");