diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index 0ea78490..2bc7cbc1 100644 --- a/src/views/dashboard/search/AdvancedSearch.vue +++ b/src/views/dashboard/search/AdvancedSearch.vue @@ -386,8 +386,8 @@ export default { break } } - if (manuscriptName === 'publish_of_original') { - // 在发布稿就找到了,合并pdf和doc文件列表排序 + if (manuscriptName === 'publish_of_original' && this.currStandardType === StandardSource.ENTERPRISE.value) { + // 是企标,在发布稿就找到了,合并pdf和doc文件列表排序 newestFileList = [...pdfFileList, ...docFileList] } else { newestFileList = pdfFileList // 默认从pdf里选最新的文件 diff --git a/src/views/dashboard/search/GeneralSearch.vue b/src/views/dashboard/search/GeneralSearch.vue index 9d462fbf..b51f4850 100644 --- a/src/views/dashboard/search/GeneralSearch.vue +++ b/src/views/dashboard/search/GeneralSearch.vue @@ -610,8 +610,8 @@ export default { break } } - if (manuscriptName === 'publish_of_original') { - // 在发布稿就找到了,合并pdf和doc文件列表排序 + if (manuscriptName === 'publish_of_original' && record.resourceType === '3') { + // 是企标,在发布稿就找到了,合并pdf和doc文件列表排序 newestFileList = [...pdfFileList, ...docFileList] } else { newestFileList = pdfFileList // 默认从pdf里选最新的文件 diff --git a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue index e32fa613..6ebeace0 100644 --- a/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue +++ b/src/views/standardRegulationLibrary/domesticStandard/DomesticStandardList.vue @@ -658,7 +658,6 @@ export default { const pdfFileList = [] const docFileList = [] let newestFileList = [] - let manuscriptName = '' // 记录找到哪个稿件就找到文件了 // 按照过程稿件顺序寻找文件 for (const formItem of processManuscript) { const keyId = formItem.dbFieldName @@ -680,17 +679,12 @@ export default { } // 一旦一个过程中找到pdf或者doc,就可以退出 if (pdfFileList.length > 0 || docFileList.length > 0) { - manuscriptName = formItem.dbFieldName break } } - if (manuscriptName === 'publish_of_original') { - // 在发布稿就找到了,合并pdf和doc文件列表排序 - newestFileList = [...pdfFileList, ...docFileList] - } else { - newestFileList = pdfFileList // 默认从pdf里选最新的文件 - if (pdfFileList.length === 0)newestFileList = docFileList // 如果没有pdf文件,就从doc文件里选 - } + newestFileList = pdfFileList // 默认从pdf里选最新的文件 + if (pdfFileList.length === 0)newestFileList = docFileList // 如果没有pdf文件,就从doc文件里选 + file = await this.selectNewestFile(newestFileList) if (file === null) { // 没有找到文件就退出 console.log('没有找到符合要求的文件!') diff --git a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue index deead0a6..daab5fcd 100644 --- a/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue +++ b/src/views/standardRegulationLibrary/overseasStandard/OverseasStandardList.vue @@ -659,7 +659,6 @@ export default { const pdfFileList = [] const docFileList = [] let newestFileList = [] - let manuscriptName = '' // 记录找到哪个稿件就找到文件了 // 按照过程稿件顺序寻找文件 for (const formItem of processManuscript) { const keyId = formItem.dbFieldName @@ -681,17 +680,12 @@ export default { } // 一旦一个过程中找到pdf或者doc,就可以退出 if (pdfFileList.length > 0 || docFileList.length > 0) { - manuscriptName = formItem.dbFieldName break } } - if (manuscriptName === 'publish_of_original') { - // 在发布稿就找到了,合并pdf和doc文件列表排序 - newestFileList = [...pdfFileList, ...docFileList] - } else { - newestFileList = pdfFileList // 默认从pdf里选最新的文件 - if (pdfFileList.length === 0)newestFileList = docFileList // 如果没有pdf文件,就从doc文件里选 - } + newestFileList = pdfFileList // 默认从pdf里选最新的文件 + if (pdfFileList.length === 0)newestFileList = docFileList // 如果没有pdf文件,就从doc文件里选 + file = await this.selectNewestFile(newestFileList) if (file === null) { // 没有找到文件就退出 console.log('没有找到符合要求的文件!')