|
@@ -311,7 +311,9 @@ function fixVolumeData(json,volumeData,index){
|
|
|
json.isBSGH = circleCheck[(importantProject?.indexOf("省级规划")>-1)?1:0];
|
|
|
json.isBSQT = circleCheck[isBSQT&&bsqtName?1:0];
|
|
|
json.isFirstNot = circleCheck[volumeData?.importantProject?0:1];
|
|
|
-
|
|
|
+
|
|
|
+ json.examineList = []
|
|
|
+ let examineMap = {}
|
|
|
for (let index = 0; index < 6; index++) {
|
|
|
if(!volumeData?.authorList?.[index]){
|
|
|
volumeData.authorList.push({name:"",unit:"",birth:"",nationality:"",job:"",title:"",mobile:"",email:"",work:""})
|
|
@@ -320,9 +322,14 @@ function fixVolumeData(json,volumeData,index){
|
|
|
volumeData.authorList = volumeData?.authorList?.map((item,index)=>{
|
|
|
item.index = index + 1
|
|
|
item.birth = toYearMonth(item?.birth)
|
|
|
+ if(item?.examine){
|
|
|
+ examineMap[item?.examine] = true;
|
|
|
+ }
|
|
|
return item
|
|
|
})
|
|
|
json.authorList = volumeData?.authorList;
|
|
|
+ json.examineList = Object.keys(examineMap)
|
|
|
+
|
|
|
|
|
|
|
|
|
for (let index = 0; index < 5; index++) {
|
|
@@ -409,6 +416,19 @@ function renderReportDocsByTextbook(textbook){
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if(json?.approvedImgUrl){
|
|
|
+ mergeFiles.push(json?.approvedImgUrl);
|
|
|
+ }
|
|
|
+ json.examineList.forEach(fileurl=>{
|
|
|
+ if(fileurl) mergeFiles.push(fileurl)
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
if(json?.selfResults?.url){mergeFiles.push(json?.selfResults?.url)}
|