|
|
|
@ -1,9 +1,8 @@
|
|
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
|
import { Component, OnInit } from '@angular/core'; |
|
|
|
|
import { MatDialog } from '@angular/material/dialog'; |
|
|
|
|
import { Component, Inject, OnInit } from '@angular/core'; |
|
|
|
|
import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; |
|
|
|
|
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
|
|
|
|
import { ActivatedRoute } from '@angular/router'; |
|
|
|
|
import { CanvasShareDataService } from 'src/app/canvas-share-data.service'; |
|
|
|
|
|
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-review-files', |
|
|
|
@ -12,20 +11,21 @@ import { CanvasShareDataService } from 'src/app/canvas-share-data.service';
|
|
|
|
|
}) |
|
|
|
|
export class ReviewFilesComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
constructor(public canvasData:CanvasShareDataService, public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute) { } |
|
|
|
|
constructor(public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute) { } |
|
|
|
|
|
|
|
|
|
async ngOnInit(): Promise<void> { |
|
|
|
|
await this.getTest() |
|
|
|
|
this.getUnitPlans()//将试卷的预案考题放进数据中
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
examId:any = this.route.snapshot.queryParams.examId //考卷id
|
|
|
|
|
examId:any = this.route.snapshot.queryParams.examId; //考卷id
|
|
|
|
|
paperId:any; //试卷id
|
|
|
|
|
paperData:any //试卷信息
|
|
|
|
|
examScore:number = 0//整个试卷的总分
|
|
|
|
|
paperCompanyData:any = []; //考生具体考卷
|
|
|
|
|
selectPaper:any = {id:null}; //选择当前考卷
|
|
|
|
|
selectPaperType:string = '1'; //选择当前考卷内容 基本信息/作战部署
|
|
|
|
|
paperId:any//试卷id
|
|
|
|
|
|
|
|
|
|
//获取考生试卷
|
|
|
|
|
async getTest () { |
|
|
|
|
await new Promise((resolve, reject) => { |
|
|
|
@ -39,7 +39,6 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
element.functionalDivisionData? element.functionalDivisionData = JSON.parse(element.functionalDivisionData) : null |
|
|
|
|
element.importLocationData? element.importLocationData = JSON.parse(element.importLocationData) : null |
|
|
|
|
element.score = element.adjoinScore + element.basicInfoScore + element.facilityScore + element.functionalDivisionScore + element.importLocationScore |
|
|
|
|
this.examScore = this.examScore + element.score |
|
|
|
|
}); |
|
|
|
|
this.paperCompanyData = JSON.parse( JSON.stringify(data.examinationDataInfo) ) //具体考卷
|
|
|
|
|
this.selectPaper = this.paperCompanyData[0] |
|
|
|
@ -47,25 +46,148 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获得单位预案设定
|
|
|
|
|
async getUnitPlans(){ |
|
|
|
|
for (let index = 0; index < this.paperCompanyData.length; index++) { |
|
|
|
|
const item = this.paperCompanyData[index]; |
|
|
|
|
item.planScore = 0 //预案总分
|
|
|
|
|
item.planList = [] //预案data
|
|
|
|
|
let params = { |
|
|
|
|
paperId : this.paperData.paperId, |
|
|
|
|
companyId : item.companyInfo.id |
|
|
|
|
} |
|
|
|
|
await new Promise((resolve,reject)=>{ |
|
|
|
|
this.http.get(`/api/PaperPlans`,{params:params}).subscribe(data => { |
|
|
|
|
console.log(111,data) |
|
|
|
|
item.planList = [] |
|
|
|
|
item.planList = data |
|
|
|
|
item.planList.forEach(element => { item.planScore = item.planScore + element.score }); |
|
|
|
|
resolve(1) |
|
|
|
|
}) |
|
|
|
|
})
|
|
|
|
|
} |
|
|
|
|
// this.calculateScore()
|
|
|
|
|
this.handleResults() //计算答案正确错误
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//处理数据 计算答案正确错误
|
|
|
|
|
handleResults () { |
|
|
|
|
this.examScore = 0 |
|
|
|
|
this.paperCompanyData.forEach(element => { |
|
|
|
|
this.examScore = this.examScore + element.score + element.planScore //试卷总分
|
|
|
|
|
//forEach
|
|
|
|
|
element.adjoinData.forEach(item => { //四周毗邻
|
|
|
|
|
item.children.forEach(items => { |
|
|
|
|
if (items.isRight===undefined) { |
|
|
|
|
items.result == items.userAnswer? items.isRight = true : items.isRight = false
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
element.basicInfoData.forEach(item => { //基本信息
|
|
|
|
|
if (item.tabledata && item.tabledata.length) { //表格
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
if (index!=0) { |
|
|
|
|
itemss.data.forEach(items => { |
|
|
|
|
if (items.isRight===undefined) { items.result == items.userAnswer? items.isRight = true : items.isRight = false } |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { //input
|
|
|
|
|
item.children.forEach(items => { if (items.isRight===undefined) { items.result == items.userAnswer? items.isRight = true : items.isRight = false } }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
element.facilityData.forEach(item => { //消防设施
|
|
|
|
|
item.children.forEach(items => { if (items.isRight===undefined) { items.result == items.userAnswer? items.isRight = true : items.isRight = false } }); |
|
|
|
|
}); |
|
|
|
|
element.functionalDivisionData.forEach(item => { //功能分区
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
if (index!=0) { |
|
|
|
|
itemss.data.forEach(items => { if (items.isRight===undefined) { items.result == items.userAnswer? items.isRight = true : items.isRight = false } }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
element.importLocationData.forEach(item => { //重点部位
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
if (index!=0) { |
|
|
|
|
itemss.data.forEach(items => { if (items.isRight===undefined) { items.result == items.userAnswer? items.isRight = true : items.isRight = false } }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
//forEach
|
|
|
|
|
}); |
|
|
|
|
this.getPaperGrade() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//循环 获取最新得分
|
|
|
|
|
getPaperGrade () { |
|
|
|
|
this.paperCompanyData.forEach(element => { |
|
|
|
|
//forEach
|
|
|
|
|
element.adjoinTotalPoints = 0 //四周毗邻 分数
|
|
|
|
|
element.adjoinData.forEach(item => { //四周毗邻
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.adjoinTotalPoints = element.adjoinTotalPoints + 1 : null }); |
|
|
|
|
}); |
|
|
|
|
element.basicInfoTotalPoints = 0 //基本信息总分
|
|
|
|
|
element.basicInfoData.forEach(item => { //基本信息
|
|
|
|
|
if (item.tabledata && item.tabledata.length) { //表格
|
|
|
|
|
let indexList = [] |
|
|
|
|
item.tabledata[0].data.forEach((e,index) => { let everyRow = { isRight: true, index: index }; indexList.push(everyRow) }); //表格 行数
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
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 |
|
|
|
|
}) |
|
|
|
|
} else { //input
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.basicInfoTotalPoints = element.basicInfoTotalPoints + 1 : null }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
element.facilityTotalPoints = 0 //消防设施总分
|
|
|
|
|
element.facilityData.forEach(item => { //消防设施
|
|
|
|
|
item.children.forEach(items => { items.isRight? element.facilityTotalPoints = element.facilityTotalPoints + 1 : null }); |
|
|
|
|
}); |
|
|
|
|
element.functionalDivisionTotalPoints = 0 //功能分区总分
|
|
|
|
|
element.functionalDivisionData.forEach(item => { //功能分区
|
|
|
|
|
if (item.tabledata && item.tabledata.length) { |
|
|
|
|
let indexList = [] |
|
|
|
|
item.tabledata[0].data.forEach((e,index) => { let everyRow = { isRight: true, index: index }; indexList.push(everyRow) }); //表格 行数
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
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 |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
element.importLocationTotalPoints = 0 //重点部位总分
|
|
|
|
|
element.importLocationData.forEach(item => { //重点部位
|
|
|
|
|
if (item.tabledata && item.tabledata.length) { |
|
|
|
|
let indexList = [] |
|
|
|
|
item.tabledata[0].data.forEach((e,index) => { let everyRow = { isRight: true, index: index }; indexList.push(everyRow) }); //表格 行数
|
|
|
|
|
item.tabledata.forEach((itemss,index) => { |
|
|
|
|
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 |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
//forEach
|
|
|
|
|
}); |
|
|
|
|
console.log(this.selectPaper) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//修改结果
|
|
|
|
|
editResults (e) { |
|
|
|
|
let data = e |
|
|
|
|
const dialogRef = this.dialog.open(editRightWrongComponent, {data}); |
|
|
|
|
dialogRef.afterClosed().subscribe(data => { |
|
|
|
|
if (data) { |
|
|
|
|
if (e.isRight != data.isChecked) { |
|
|
|
|
e.isRight = data.isChecked |
|
|
|
|
this.getPaperGrade() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//基本信息表格 是否展示当前行
|
|
|
|
|
rowIsShow (children,tag) { |
|
|
|
|
let isShow:boolean = false |
|
|
|
@ -110,4 +232,37 @@ export class ReviewFilesComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface radioType { |
|
|
|
|
isRight: boolean, |
|
|
|
|
name: string, |
|
|
|
|
} |
|
|
|
|
@Component({ |
|
|
|
|
selector: 'app-edit-rightWrong', |
|
|
|
|
templateUrl: './editRightWrong.html', |
|
|
|
|
styleUrls: ['./review-files.component.scss'] |
|
|
|
|
}) |
|
|
|
|
export class editRightWrongComponent implements OnInit { |
|
|
|
|
|
|
|
|
|
constructor(public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute,@Inject(MAT_DIALOG_DATA) public data: any,public dialogRef: MatDialogRef<any>,) { } |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
this.isChecked = JSON.parse( JSON.stringify(this.data.isRight) ) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
isChecked:boolean; //是否正确
|
|
|
|
|
radioList:radioType[] = [ |
|
|
|
|
{ isRight: true, name: '正确', }, |
|
|
|
|
{ isRight: false, name: '错误', }, |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
submit () { |
|
|
|
|
let data = {isChecked : this.isChecked} |
|
|
|
|
this.dialogRef.close(data) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|