From e274c3d0402ed5b88d37e8e63e5eac56bac239f5 Mon Sep 17 00:00:00 2001 From: chenjingyu Date: Wed, 24 Feb 2021 15:48:45 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E6=94=B9]=E7=BC=96=E8=BE=91=E8=AF=95?= =?UTF-8?q?=E5=8D=B7=E8=B0=83=E5=87=86=E9=80=BB=E8=BE=91=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../examiner-index.component.ts | 35 ++++++++++++++++--- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/src/app/examiner/examiner-index/examiner-index.component.ts b/src/app/examiner/examiner-index/examiner-index.component.ts index 7dac192..eac6ede 100644 --- a/src/app/examiner/examiner-index/examiner-index.component.ts +++ b/src/app/examiner/examiner-index/examiner-index.component.ts @@ -4,7 +4,7 @@ * @Author: sueRimn * @Date: 2020-12-11 09:06:03 * @LastEditors: sueRimn - * @LastEditTime: 2021-02-23 17:04:01 + * @LastEditTime: 2021-02-24 15:37:32 */ import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core'; import {HttpClient} from '@angular/common/http' @@ -430,6 +430,7 @@ export class editorsDia{ this.startTime=this.datas.startTime.split("+")[0] this.endTime=this.datas.endTime.split("+")[0] this.examName=this.datas.title + console.log(this.datas) } //获取登录账号的个人资料 Profiles:any @@ -463,15 +464,41 @@ export class editorsDia{ endTime:this.endTime, title:this.examName } + let params = { + id: null, + title: this.examName, + duration: this.datas.duration, + modifiedTime: new Date(), + deleted: false, + startTime: this.startTime, + endTime: this.endTime, + organizationId: this.datas.organizationId, + creatorId: this.datas.creatorId, + paperDataInfo: null + } this.http.put(`/api/Papers/${this.datas.id}`,body).subscribe(data => { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; config.duration = 3000 this.snackBar.open('修改名称时间成功','确定',config); setTimeout(() => { - sessionStorage.setItem("paperId",this.datas.id) - //this.router.navigateByUrl("/examiner/create-test-score?pattern=edit") - this.router.navigateByUrl("/createexam-index/examiner-new-one?pattern=edit") + this.http.get(`/api/Papers/${this.datas.id}`).subscribe((data:any) => { + if(data.paperDataInfo.length==0){ + this.http.delete(`/api/Papers/${this.datas.id}`).subscribe((data:any) => { + }) + this.http.post('/api/Papers',params).subscribe(data => { + //sessionStorage.removeItem("checkedWork") + sessionStorage.setItem("paperId",this.datas.id) + this.router.navigate(['/home/createexam-index/examiner-new-one']) //跳转试卷列表页面 + },err => { + this.snackBar.open(err,'确定',config); + }) + }else{ + sessionStorage.setItem("paperId",this.datas.id) + this.router.navigateByUrl("/examiner/create-test-score?pattern=edit") + } + }) + this.dialogRef.close(); }, 1000); })