From ec2a88a80f1d5b159883ee63354e0d68c73513fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Tue, 2 Jan 2024 10:16:02 +0800 Subject: [PATCH] fix 79904 --- .../standard/detail/EnterpriseStandardDetail.vue | 4 ++-- .../commonPage/StandardDetailPage.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue b/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue index 84d855a0..7069097f 100644 --- a/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue +++ b/src/views/enterpriseStandardLibrary/standard/detail/EnterpriseStandardDetail.vue @@ -300,11 +300,11 @@ export default { }, handleDownload (file) { // 下载文件 - downloadFile(`/laws/standard/common/downloadWithWaterMark/${file.id}`, file.fileName) + downloadFile(`/sys/common/download/${file.id}`, file.fileName) }, // 过程稿件里的无水印下载 downloadDraftNoWater (file) { - downloadFile(`/sys/common/download/${file.id}`, file.fileName) + downloadFile(`/sys/common/downloadWithoutWaterMark/${file.id}`, file.fileName) }, // 企标评价 handleEvaluate () { diff --git a/src/views/standardRegulationLibrary/commonPage/StandardDetailPage.vue b/src/views/standardRegulationLibrary/commonPage/StandardDetailPage.vue index 7bd5b7ab..ab747e2a 100644 --- a/src/views/standardRegulationLibrary/commonPage/StandardDetailPage.vue +++ b/src/views/standardRegulationLibrary/commonPage/StandardDetailPage.vue @@ -405,14 +405,14 @@ export default { */ handleDownload (file) { // 下载文件 - downloadFile(`/sys/common/download/${file.id}`, file.fileName) + downloadFile(`/sys/common/downloadWithoutWaterMark/${file.id}`, file.fileName) }, /** * 有水印下载 * @param file */ handleWatermarkedDownload (file) { - downloadFile(`/laws/standard/common/downloadWithWaterMark/${file.id}`, file.fileName) + downloadFile(`/sys/common/download/${file.id}`, file.fileName) } } }