From 1e8b63785f1429f650d2d73655929e8c1281ec12 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 17 May 2023 09:26:10 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E9=98=85=E5=8D=B7=E5=90=8E?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=85=B3=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/examiner/review-files/review-files.component.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/examiner/review-files/review-files.component.ts b/src/app/examiner/review-files/review-files.component.ts index 89f5e72..8a6c3fc 100644 --- a/src/app/examiner/review-files/review-files.component.ts +++ b/src/app/examiner/review-files/review-files.component.ts @@ -89,7 +89,7 @@ export class ReviewFilesComponent implements OnInit { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; config.duration = 5000 - this.snackBar.open('刷新成功','确定',config); + // this.snackBar.open('刷新成功','确定',config); } resolve(1) }) @@ -290,7 +290,10 @@ export class ReviewFilesComponent implements OnInit { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; config.duration = 5000 - this.snackBar.open('阅卷结果提交成功','确定',config); + this.snackBar.open('阅卷结果提交成功,页面将于一秒后关闭!','确定',config); + setTimeout(() => { + window.close() + }, 1000); }) }