[update] 国标和外标预览发布稿优先pdf文件

This commit is contained in:
lideqin
2024-05-22 16:42:22 +08:00
parent 840c43c7c6
commit ee2d694703
4 changed files with 10 additions and 22 deletions
@@ -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里选最新的文件
+2 -2
View File
@@ -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里选最新的文件
@@ -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('没有找到符合要求的文件!')
@@ -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('没有找到符合要求的文件!')