|
@@ -346,7 +346,8 @@ function fixVolumeData(json,volumeData,index,totalJson){
|
|
|
item.index = index + 1
|
|
|
item.birth = toYearMonth(item?.birth)
|
|
|
if(item?.examine){
|
|
|
- totalJson.examineList = pushDistinctItem(totalJson.examineList,item)
|
|
|
+ // totalJson.examineList = pushDistinctItem(totalJson.examineList,item) // 名称去重
|
|
|
+ totalJson.examineList.push(item); // 全量导出
|
|
|
}
|
|
|
return item
|
|
|
})
|
|
@@ -356,7 +357,8 @@ function fixVolumeData(json,volumeData,index,totalJson){
|
|
|
// 其他编者政治审查表
|
|
|
totalJson.otherList = totalJson.otherList || []
|
|
|
if(volumeData?.otherEditor){
|
|
|
- totalJson.otherList = pushDistinctItem(totalJson.otherList,volumeData?.otherEditor)
|
|
|
+ // totalJson.otherList = pushDistinctItem(totalJson.otherList,volumeData?.otherEditor) // 名称去重
|
|
|
+ totalJson.otherList.push(volumeData?.otherEditor); //全量导出
|
|
|
}
|
|
|
|
|
|
// 成果列表
|