From 7bd86c89cc58415997be48f8d0592a225063300a Mon Sep 17 00:00:00 2001 From: 13562321995 <13562321995@163.com> Date: Fri, 8 Apr 2022 10:38:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=80=83=E7=94=9F=E4=BF=AE=E6=94=B9=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E9=A2=84=E6=A1=88=E5=88=86=E6=95=B0BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/examiner/review-files/review-files.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/examiner/review-files/review-files.component.ts b/src/app/examiner/review-files/review-files.component.ts index 2009c48..2c15f82 100644 --- a/src/app/examiner/review-files/review-files.component.ts +++ b/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';