From a00226903efeac08103c2b1c2ba20f6fa6501715 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Tue, 11 Jun 2024 10:55:10 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=9B=BD=E6=A0=87=E3=80=81=E5=A4=96?= =?UTF-8?q?=E6=A0=87=E3=80=81=E4=BC=81=E6=A0=87=E9=A2=84=E8=A7=88=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=8F=AF=E4=BB=A5=E9=A2=84=E8=A7=88doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/search/AdvancedSearch.vue | 2 +- src/views/dashboard/search/GeneralSearch.vue | 2 +- .../standard/EnterpriseStandardList.vue | 2 +- .../domesticStandard/DomesticStandardList.vue | 2 +- .../overseasStandard/OverseasStandardList.vue | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index 2bc7cbc1..14fa53e1 100644 --- a/src/views/dashboard/search/AdvancedSearch.vue +++ b/src/views/dashboard/search/AdvancedSearch.vue @@ -376,7 +376,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'docx') { + if (suffix === 'doc' || suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/dashboard/search/GeneralSearch.vue b/src/views/dashboard/search/GeneralSearch.vue index b51f4850..0389e3c7 100644 --- a/src/views/dashboard/search/GeneralSearch.vue +++ b/src/views/dashboard/search/GeneralSearch.vue @@ -600,7 +600,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'docx') { + if (suffix === 'doc' || suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue b/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue index f61b2267..0ad8628d 100644 --- a/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue +++ b/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue @@ -810,7 +810,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'docx') { + if (suffix === 'doc' || suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue index 6ebeace0..d1c24245 100644 --- a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue +++ b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue @@ -673,7 +673,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'docx') { + if (suffix === 'doc' || suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue index daab5fcd..9dfb278e 100644 --- a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue +++ b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue @@ -674,7 +674,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'docx') { + if (suffix === 'doc' || suffix === 'docx') { docFileList.push({ id, name, suffix }) } }