diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index d01b5b64..0ea78490 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 === 'doc' || suffix === 'docx') { + if (suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/dashboard/search/GeneralSearch.vue b/src/views/dashboard/search/GeneralSearch.vue index 00a469ff..9d462fbf 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 === 'doc' || suffix === 'docx') { + if (suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue b/src/views/enterpriseStandardLibrary/standard/EnterpriseStandardList.vue index 0ad8628d..f61b2267 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 === 'doc' || suffix === 'docx') { + if (suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue index 515203c8..e32fa613 100644 --- a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue +++ b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue @@ -674,7 +674,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'doc' || suffix === 'docx') { + if (suffix === 'docx') { docFileList.push({ id, name, suffix }) } } diff --git a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue index fb7cce78..deead0a6 100644 --- a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue +++ b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue @@ -675,7 +675,7 @@ export default { if (suffix === 'pdf') { pdfFileList.push({ id, name, suffix }) } - if (suffix === 'doc' || suffix === 'docx') { + if (suffix === 'docx') { docFileList.push({ id, name, suffix }) } }