|
|
|
@ -28,7 +28,11 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
this.getFunDiv() |
|
|
|
|
this.getFireFac() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//当前选中的单位
|
|
|
|
|
selectedUnitIndex = 0 |
|
|
|
|
clickUnitName(key){ |
|
|
|
|
this.selectedUnitIndex = key |
|
|
|
|
} |
|
|
|
|
//模拟单位数据
|
|
|
|
|
unitDatas:any = [ |
|
|
|
|
{name:'富丽华大酒店1',score:0,basicInfoScore:0,basicInfoItemScore:0,basicInfoNodes : [ |
|
|
|
@ -81,11 +85,11 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
//上个页面传过来的单位数据
|
|
|
|
|
unitId:any = [{name:'最最最最最',id:'5fb76c42919f2b44e464016f'}, |
|
|
|
|
{name:'华南城集团有限公司',id:'5ee19fe06f91049f5e23e937'}, |
|
|
|
|
{name:'贵港油库',id:'5fa35d68f8eb762cb03c662e'} |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
// unitId:any = [{name:'最最最最最',id:'5fb76c42919f2b44e464016f'},
|
|
|
|
|
// {name:'华南城集团有限公司',id:'5ee19fe06f91049f5e23e937'},
|
|
|
|
|
// {name:'贵港油库',id:'5fa35d68f8eb762cb03c662e'}
|
|
|
|
|
// ]
|
|
|
|
|
unitId:any = JSON.parse(localStorage.getItem('checkedWork'))
|
|
|
|
|
//获取单位基本信息
|
|
|
|
|
getUnitData(){ |
|
|
|
|
this.unitId.forEach((element,index) => { |
|
|
|
@ -737,7 +741,7 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
this.examScore = examScore + examScore2 |
|
|
|
|
} |
|
|
|
|
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; |
|
|
|
|
|
|
|
|
|
//保存
|
|
|
|
|
save(){ |
|
|
|
|
let copyDatas = JSON.parse(JSON.stringify(this.unitId)) |
|
|
|
@ -1001,14 +1005,32 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//循环每个建筑处理数据
|
|
|
|
|
console.log(copyDatas)
|
|
|
|
|
// copyDatas.forEach(item =>{
|
|
|
|
|
// //建筑的基本信息模块处理
|
|
|
|
|
// item.basicInfoNodes.forEach((i,key) => {
|
|
|
|
|
|
|
|
|
|
// })
|
|
|
|
|
let paperDataInfo = [] |
|
|
|
|
copyDatas.forEach((item,key) =>{ |
|
|
|
|
paperDataInfo[key] = {} |
|
|
|
|
paperDataInfo[key].id = '' |
|
|
|
|
paperDataInfo[key].paperId = '' |
|
|
|
|
paperDataInfo[key].companyId = item.id |
|
|
|
|
paperDataInfo[key].basicInfoData = item.basicInfoNodes |
|
|
|
|
paperDataInfo[key].basicInfoScore = item.basicInfoScore |
|
|
|
|
paperDataInfo[key].adjoinData = item.aroundNodes |
|
|
|
|
paperDataInfo[key].adjoinScore = item.aroundScore |
|
|
|
|
paperDataInfo[key].importLocationData = item.keySiteNodes |
|
|
|
|
paperDataInfo[key].importLocationScore = item.keySiteScore |
|
|
|
|
paperDataInfo[key].functionalDivisionData = item.funDivNodes |
|
|
|
|
paperDataInfo[key].functionalDivisionScore = item.funDivScore |
|
|
|
|
paperDataInfo[key].facilityData = item.fireFacNodes |
|
|
|
|
paperDataInfo[key].facilityScore = item.fireFacScore |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
console.log(paperDataInfo)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// })
|
|
|
|
|
} |
|
|
|
|
//上一步
|
|
|
|
|
goBack(){ |
|
|
|
|
window.history.back();
|
|
|
|
|
} |
|
|
|
|
//完成按钮
|
|
|
|
|
finishClick(){ |
|
|
|
|