Browse Source

考生修改查看预案分数BUG

master
13562321995 3 years ago
parent
commit
7bd86c89cc
  1. 2
      src/app/examiner/review-files/review-files.component.ts

2
src/app/examiner/review-files/review-files.component.ts

@ -76,7 +76,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 => { this.paperType == 1? item.planScore = item.planScore + element.paperPlanInfo.score : item.planScore = item.planScore + element.score });
item.planList.forEach(element => { item.planScore = item.planScore + element.paperPlanInfo.score });
if(type == false){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';

Loading…
Cancel
Save