|
|
|
@ -27,42 +27,64 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
}, 0); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
async ngOnInit(): Promise<void> { |
|
|
|
|
for (let y = 0, length = this.unitId.length; y < length; y++){ |
|
|
|
|
let element = this.unitId[y] |
|
|
|
|
element.score = 0 |
|
|
|
|
element.basicInfoScore = 0 |
|
|
|
|
element.basicInfoItemScore = 0 |
|
|
|
|
element.basicInfoNodes = [] |
|
|
|
|
element.aroundScore = 0 |
|
|
|
|
element.aroundItemScore = 0 |
|
|
|
|
element.aroundNodes = [] |
|
|
|
|
element.keySiteScore = 0 |
|
|
|
|
element.keySiteItemScore = 0 |
|
|
|
|
element.keySiteNodes = [] |
|
|
|
|
element.funDivScore = 0 |
|
|
|
|
element.funDivItemScore = 0 |
|
|
|
|
element.funDivNodes = [] |
|
|
|
|
element.fireFacScore = 0 |
|
|
|
|
element.fireFacItemScore = 0 |
|
|
|
|
element.fireFacNodes = [] |
|
|
|
|
} |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.route.snapshot.queryParams.pattern && this.route.snapshot.queryParams.pattern == 'edit'){ |
|
|
|
|
this.getSoloPaper() |
|
|
|
|
}else{ |
|
|
|
|
this.unitId = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
|
|
|
|
|
for (let y = 0, length = this.unitId.length; y < length; y++){ |
|
|
|
|
let element = this.unitId[y] |
|
|
|
|
element.score = 0 |
|
|
|
|
element.basicInfoScore = 0 |
|
|
|
|
element.basicInfoItemScore = 0 |
|
|
|
|
element.basicInfoNodes = [] |
|
|
|
|
element.aroundScore = 0 |
|
|
|
|
element.aroundItemScore = 0 |
|
|
|
|
element.aroundNodes = [] |
|
|
|
|
element.keySiteScore = 0 |
|
|
|
|
element.keySiteItemScore = 0 |
|
|
|
|
element.keySiteNodes = [] |
|
|
|
|
element.funDivScore = 0 |
|
|
|
|
element.funDivItemScore = 0 |
|
|
|
|
element.funDivNodes = [] |
|
|
|
|
element.fireFacScore = 0 |
|
|
|
|
element.fireFacItemScore = 0 |
|
|
|
|
element.fireFacNodes = [] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.getUnitData().then(()=>{ |
|
|
|
|
this.getAround().then(()=>{ |
|
|
|
|
this.getKeySite().then(()=>{ |
|
|
|
|
this.getFunDiv().then(()=>{ |
|
|
|
|
this.getFireFac() |
|
|
|
|
this.getUnitData().then(()=>{ |
|
|
|
|
this.getAround().then(()=>{ |
|
|
|
|
this.getKeySite().then(()=>{ |
|
|
|
|
this.getFunDiv().then(()=>{ |
|
|
|
|
this.getFireFac() |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
this.getPaperPlans().then(()=>{ |
|
|
|
|
this.planItemScore() |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.getPaperPlans().then(()=>{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获得指定试卷信息。
|
|
|
|
|
getSoloPaper(){ |
|
|
|
|
this.http.get(`/api/Papers/${sessionStorage.getItem('paperId')}`).subscribe((data:any) => { |
|
|
|
|
data.paperDataInfo.forEach(item => { |
|
|
|
|
this.unitId.push(JSON.parse(item.originalData)) |
|
|
|
|
}) |
|
|
|
|
console.log('试卷信息',this.unitId) |
|
|
|
|
this.planItemScore() |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取所有考试设定
|
|
|
|
|
async getPaperPlans(){ |
|
|
|
|
|
|
|
|
@ -90,7 +112,7 @@ export class CreateTestScoreComponent implements OnInit {
|
|
|
|
|
clickUnitName(key){ |
|
|
|
|
this.selectedUnitIndex = key |
|
|
|
|
} |
|
|
|
|
unitId:any = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
|
|
|
|
|
unitId:any = [] |
|
|
|
|
|
|
|
|
|
//获取单位基本信息
|
|
|
|
|
async getUnitData(){ |
|
|
|
|