|
|
|
@ -32,12 +32,17 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
this.http.get(`/api/Examinations/${this.examId}`).subscribe((data:any)=>{ |
|
|
|
|
this.paperData = data |
|
|
|
|
this.paperId = this.paperData.paperId |
|
|
|
|
this.paperData.examinationDataInfo.forEach(element => { |
|
|
|
|
this.paperData.examinationDataInfo.forEach((element,index) => { |
|
|
|
|
element.adjoinData? element.adjoinData = JSON.parse(element.adjoinData) : null |
|
|
|
|
element.basicInfoData? element.basicInfoData = JSON.parse(element.basicInfoData) : null |
|
|
|
|
element.facilityData? element.facilityData = JSON.parse(element.facilityData) : null |
|
|
|
|
element.functionalDivisionData? element.functionalDivisionData = JSON.parse(element.functionalDivisionData) : null |
|
|
|
|
element.importLocationData? element.importLocationData = JSON.parse(element.importLocationData) : null |
|
|
|
|
element.adjoinItemScore = data.paperInfo.paperDataInfo[index].adjoinItemScore //四周毗邻单项分
|
|
|
|
|
element.basicInfoItemScore = data.paperInfo.paperDataInfo[index].basicInfoItemScore //基本信息单项分
|
|
|
|
|
element.facilityItemScore = data.paperInfo.paperDataInfo[index].facilityItemScore //消防设施单项分
|
|
|
|
|
element.functionalDivisionItemSocre = data.paperInfo.paperDataInfo[index].functionalDivisionItemSocre //功能分区单选分
|
|
|
|
|
element.importLocationItemScore = data.paperInfo.paperDataInfo[index].importLocationItemScore //重点部位单项分
|
|
|
|
|
element.score = element.adjoinScore + element.basicInfoScore + element.facilityScore + element.functionalDivisionScore + element.importLocationScore |
|
|
|
|
}); |
|
|
|
|
this.paperCompanyData = JSON.parse( JSON.stringify(data.examinationDataInfo) ) //具体考卷
|
|
|
|
@ -60,6 +65,7 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
await new Promise((resolve,reject)=>{ |
|
|
|
|
this.http.get(`/api/ExaminationPlans`,{params:params}).subscribe(data => { |
|
|
|
|
item.planList = data |
|
|
|
|
item.planList.forEach(element => { item.planScore = item.planScore + element.paperPlanInfo.score }); |
|
|
|
|
if(type == false){ |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
@ -127,7 +133,7 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
//forEach
|
|
|
|
|
element.adjoinTotalPoints = 0 //四周毗邻 分数
|
|
|
|
|
element.adjoinData.forEach(item => { //四周毗邻
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.adjoinTotalPoints = element.adjoinTotalPoints + 1 : null }); |
|
|
|
|
item.children.forEach(items => { items.isRight? element.adjoinTotalPoints = element.adjoinTotalPoints + element.adjoinItemScore : null }); |
|
|
|
|
}); |
|
|
|
|
element.basicInfoTotalPoints = 0 //基本信息总分
|
|
|
|
|
element.basicInfoData.forEach(item => { //基本信息
|
|
|
|
@ -138,15 +144,15 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
indexList.forEach(ele=>{ if (itemss.data[ele.index].isRight !=undefined && itemss.data[ele.index].isRight === false) { ele.isRight = false } }) |
|
|
|
|
}); |
|
|
|
|
indexList.forEach(item=>{ |
|
|
|
|
item.isRight? element.basicInfoTotalPoints = element.basicInfoTotalPoints + 1 : null |
|
|
|
|
item.isRight? element.basicInfoTotalPoints = element.basicInfoTotalPoints + element.basicInfoItemScore : null |
|
|
|
|
}) |
|
|
|
|
} else { //input
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.basicInfoTotalPoints = element.basicInfoTotalPoints + 1 : null }); |
|
|
|
|
item.children.forEach(items => { items.isRight? element.basicInfoTotalPoints = element.basicInfoTotalPoints + element.basicInfoItemScore : null }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
element.facilityTotalPoints = 0 //消防设施总分
|
|
|
|
|
element.facilityData.forEach(item => { //消防设施
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.facilityTotalPoints = element.facilityTotalPoints + 1 : null }); |
|
|
|
|
item.children.forEach(items => { items.isRight? element.facilityTotalPoints = element.facilityTotalPoints + element.facilityItemScore : null }); |
|
|
|
|
}); |
|
|
|
|
element.functionalDivisionTotalPoints = 0 //功能分区总分
|
|
|
|
|
element.functionalDivisionData.forEach(item => { //功能分区
|
|
|
|
@ -157,7 +163,7 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
indexList.forEach(ele=>{ if (itemss.data[ele.index].isRight !=undefined && itemss.data[ele.index].isRight === false) { ele.isRight = false } }) |
|
|
|
|
}); |
|
|
|
|
indexList.forEach(item=>{ |
|
|
|
|
item.isRight? element.functionalDivisionTotalPoints = element.functionalDivisionTotalPoints + 1 : null |
|
|
|
|
item.isRight? element.functionalDivisionTotalPoints = element.functionalDivisionTotalPoints + element.functionalDivisionItemSocre : null |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -170,7 +176,7 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
indexList.forEach(ele=>{ if (itemss.data[ele.index].isRight !=undefined && itemss.data[ele.index].isRight === false) { ele.isRight = false } }) |
|
|
|
|
}); |
|
|
|
|
indexList.forEach(item=>{ |
|
|
|
|
item.isRight? element.importLocationTotalPoints = element.importLocationTotalPoints + 1 : null |
|
|
|
|
item.isRight? element.importLocationTotalPoints = element.importLocationTotalPoints + element.importLocationItemScore : null |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|