Browse Source

[完善]增加阅卷留痕功能

智慧矿山应急安全培训、考核、演练管理系统
邵佳豪 2 years ago
parent
commit
e823ddd89e
  1. 2
      src/app/examiner/examiner.module.ts
  2. 32
      src/app/examiner/mark-papers-index/mark-papers-index.component.html
  3. 199
      src/app/examiner/mark-papers-index/mark-papers-index.component.ts
  4. 30
      src/app/examiner/mark-papers-two/mark-papers-two.component.html
  5. 198
      src/app/examiner/mark-papers-two/mark-papers-two.component.scss
  6. 6
      src/app/examiner/mark-papers-two/mark-papers-two.component.ts
  7. 28
      src/app/examiner/mark-papers-two/review-record/review-record.component.html
  8. 29
      src/app/examiner/mark-papers-two/review-record/review-record.component.scss
  9. 25
      src/app/examiner/mark-papers-two/review-record/review-record.component.spec.ts
  10. 56
      src/app/examiner/mark-papers-two/review-record/review-record.component.ts
  11. 3
      src/app/examiner/review-files/editFraction.html
  12. 172
      src/app/examiner/review-files/review-files.component.ts

2
src/app/examiner/examiner.module.ts

@ -79,6 +79,7 @@ import { ExamineePapersComponent } from "./statistic-analysis/examStatistics/exa
import { ExamineeCapacityComponent } from "./statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component"; import { ExamineeCapacityComponent } from "./statistic-analysis/abilityAnalysis/examinee-capacity/examinee-capacity.component";
import { NzRateModule } from "ng-zorro-antd/rate"; import { NzRateModule } from "ng-zorro-antd/rate";
import { EvaluateComponent } from "./review-files/evaluate/evaluate.component"; import { EvaluateComponent } from "./review-files/evaluate/evaluate.component";
import { ReviewRecordComponent } from './mark-papers-two/review-record/review-record.component';
@NgModule({ @NgModule({
declarations: [ declarations: [
CreateTestScoreComponent, CreateTestScoreComponent,
@ -101,6 +102,7 @@ import { EvaluateComponent } from "./review-files/evaluate/evaluate.component";
ExamineePapersComponent, ExamineePapersComponent,
ExamineeCapacityComponent, ExamineeCapacityComponent,
EvaluateComponent, EvaluateComponent,
ReviewRecordComponent,
], ],
imports: [ imports: [
CommonModule, CommonModule,

32
src/app/examiner/mark-papers-index/mark-papers-index.component.html

@ -11,21 +11,21 @@
<div class="queryBox"> <div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;font-size: 15px;">试卷名称:</label> <label style="margin-right: 10px;font-size: 15px;">试卷名称:</label>
<input type="text" placeholder="请输入试卷名称" style="font-size: 15px;" [(ngModel)]="markName"/> <input type="text" placeholder="请输入试卷名称" style="font-size: 15px;" [(ngModel)]="markName" />
</div> </div>
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;font-size: 15px;">考试日期:</label> <label style="margin-right: 10px;font-size: 15px;">考试日期:</label>
<input type="date" placeholder="请输入考试日期" style="font-size: 15px;" [(ngModel)]="markDate"/> <input type="date" placeholder="请输入考试日期" style="font-size: 15px;" [(ngModel)]="markDate" />
</div> </div>
<div class="queryField"> <div class="queryField">
<button style="background-color: #07CDCF;" (click)='findClick()'>查询</button> <button style="background-color: #07CDCF;" (click)='findClick()'>查询</button>
<button style="margin-left: 10px; background-color: #FF8678;" (click)="resert()">重置</button> <button style="margin-left: 10px; background-color: #FF8678;" (click)="resert()">重置</button>
</div> </div>
</div> </div>
</div> </div>
<div class="centertable"> <div class="centertable">
<table > <table>
<thead> <thead>
<th style="width: 15%;">试卷名称</th> <th style="width: 15%;">试卷名称</th>
<th style="width: 15%;">考核队站</th> <th style="width: 15%;">考核队站</th>
@ -39,18 +39,18 @@
<td><span *ngFor="let item2 of item.organizationNames">{{item2+' '}}</span></td> <td><span *ngFor="let item2 of item.organizationNames">{{item2+' '}}</span></td>
<td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td> <td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td> <td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td > <td>
<span id={{item.name}} style="color: #07CDCF;cursor: pointer;" (click)="markTwo(item.title,item.id,item.organizationsName)">阅卷</span> <!-- <span (click)="look(item)">批阅记录</span> -->
<span style="color: #07CDCF;cursor: pointer;"
(click)="markTwo(item.title,item.id,item.organizationsName)">阅卷</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<mat-paginator [length]="length" <mat-paginator [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions"
[pageSize]="pageSize" (page)="chagePage($event)">
[pageSizeOptions]="pageSizeOptions" </mat-paginator>
(page)="chagePage($event)">
</mat-paginator>
</div> </div>
</div> </div>

199
src/app/examiner/mark-papers-index/mark-papers-index.component.ts

@ -1,101 +1,166 @@
/* /*
* @Descripttion: * @Descripttion:
* @version: * @version:
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-14 16:30:31 * @Date: 2020-12-14 16:30:31
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2021-01-04 16:53:04 * @LastEditTime: 2021-01-04 16:53:04
*/ */
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; import { Component, OnInit, ViewChild, Inject } from "@angular/core";
import {HttpClient} from '@angular/common/http' import { HttpClient } from "@angular/common/http";
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; import {
import { MatPaginator } from '@angular/material/paginator'; MatDialogRef,
import { MatTableDataSource } from '@angular/material/table'; MatDialog,
import { PageEvent } from '@angular/material/paginator'; MAT_DIALOG_DATA,
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; } from "@angular/material/dialog";
import {FormControl} from '@angular/forms'; import { MatPaginator } from "@angular/material/paginator";
import { Router,ActivatedRoute } from '@angular/router'; import { MatTableDataSource } from "@angular/material/table";
import { PageEvent } from "@angular/material/paginator";
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar";
import { FormControl } from "@angular/forms";
import { Router, ActivatedRoute } from "@angular/router";
const ELEMENT_DATA = [ const ELEMENT_DATA = [
{name: "富华酒店", organization: '浦东支队', startTime: "2020-09-19 10:00", overTime: '2020-09-19 12:00',testState:'未开考'}, {
{name: "富华酒店", organization: '黄埔支队', startTime: "2020-09-19 10:00", overTime: '2020-09-19 12:00',testState:'未开考'}, name: "富华酒店",
{name: "雁山园", organization: '徐汇支队', startTime: "2020-09-19 10:00", overTime: '2020-09-19 12:00',testState:'开考中'}, organization: "浦东支队",
{name: "富华酒店", organization: '普陀支队', startTime: "2020-09-19 10:00", overTime: '2020-09-19 12:00',testState:'开考中'}, startTime: "2020-09-19 10:00",
{name: "立新加油站", organization: '浦东支队', startTime: "2020-09-19 10:00", overTime: '2020-09-19 12:00',testState:'开考中'}, overTime: "2020-09-19 12:00",
{name: "富华酒店", organization: '宝山支队', startTime: "2020-07-19 10:00", overTime: '2020-07-19 12:00',testState:'已结束'}, testState: "未开考",
{name: "裕达国际酒店", organization: '浦东支队', startTime: "2020-08-19 10:00", overTime: '2020-08-19 12:00',testState:'已结束'}, },
{name: "锦德大酒店", organization: '长宁支队', startTime: "2019-09-19 10:00", overTime: '2019-09-19 12:00',testState:'已结束'}, {
name: "富华酒店",
organization: "黄埔支队",
startTime: "2020-09-19 10:00",
overTime: "2020-09-19 12:00",
testState: "未开考",
},
{
name: "雁山园",
organization: "徐汇支队",
startTime: "2020-09-19 10:00",
overTime: "2020-09-19 12:00",
testState: "开考中",
},
{
name: "富华酒店",
organization: "普陀支队",
startTime: "2020-09-19 10:00",
overTime: "2020-09-19 12:00",
testState: "开考中",
},
{
name: "立新加油站",
organization: "浦东支队",
startTime: "2020-09-19 10:00",
overTime: "2020-09-19 12:00",
testState: "开考中",
},
{
name: "富华酒店",
organization: "宝山支队",
startTime: "2020-07-19 10:00",
overTime: "2020-07-19 12:00",
testState: "已结束",
},
{
name: "裕达国际酒店",
organization: "浦东支队",
startTime: "2020-08-19 10:00",
overTime: "2020-08-19 12:00",
testState: "已结束",
},
{
name: "锦德大酒店",
organization: "长宁支队",
startTime: "2019-09-19 10:00",
overTime: "2019-09-19 12:00",
testState: "已结束",
},
]; ];
@Component({ @Component({
selector: 'app-mark-papers-index', selector: "app-mark-papers-index",
templateUrl: './mark-papers-index.component.html', templateUrl: "./mark-papers-index.component.html",
styleUrls: ['./mark-papers-index.component.scss'] styleUrls: ["./mark-papers-index.component.scss"],
}) })
export class MarkPapersIndexComponent implements OnInit { export class MarkPapersIndexComponent implements OnInit {
constructor(
constructor(private router: Router,private activatedRoute: ActivatedRoute,public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar) { } private router: Router,
private activatedRoute: ActivatedRoute,
public http: HttpClient,
public dialog: MatDialog,
public snackBar: MatSnackBar
) {}
ngOnInit(): void { ngOnInit(): void {
this.getAlltabledate() this.getAlltabledate();
} }
dataSource dataSource;
markName//试卷名称 markName; //试卷名称
markDate//考试日期 markDate; //考试日期
//分页 //分页
@ViewChild(MatPaginator, {static: true}) @ViewChild(MatPaginator, { static: true })
pageEvent: PageEvent; pageEvent: PageEvent;
paginator: MatPaginator; paginator: MatPaginator;
length:any; //共多少条数据 length: any; //共多少条数据
pageSize:any; //每页条数 pageSize: any; //每页条数
pageSizeOptions: number[] = [10] //设置每页条数 pageSizeOptions: number[] = [10]; //设置每页条数
PageNumber:any //第几页 PageNumber: any; //第几页
//查询 //查询
findClick(){ findClick() {
let paramsdata:any = { let paramsdata: any = {
PageNumber: this.PageNumber || '1', PageNumber: this.PageNumber || "1",
PageSize: this.pageSizeOptions[0], PageSize: this.pageSizeOptions[0],
Title:this.markName||'', Title: this.markName || "",
StartTime:this.markDate||'', StartTime: this.markDate || "",
Sort: null, Sort: null,
SortType: null, SortType: null,
} };
this.http.get(`/api/Papers`,{params:paramsdata}).subscribe((data:any)=>{ this.http
console.log(data) .get(`/api/Papers`, { params: paramsdata })
this.dataSource=data.items .subscribe((data: any) => {
}) console.log(data);
this.PageNumber = 1 this.dataSource = data.items;
this.pageEvent.pageIndex = 0 });
this.PageNumber = 1;
this.pageEvent.pageIndex = 0;
//this.getAlltabledate() //this.getAlltabledate()
} }
//重置功能 //重置功能
resert(){ resert() {
this.markName='' this.markName = "";
this.markDate='' this.markDate = "";
this.getAlltabledate() this.getAlltabledate();
} }
//点击阅卷跳转 //点击阅卷跳转
markTwo(e,id,name){ markTwo(e, id, name) {
console.log(e) console.log(e);
this.router.navigate(['/home/mark-papers-index/mark-papers-two'],{queryParams:{'level':e,'id':id,'name':name}}) this.router.navigate(["/home/mark-papers-index/mark-papers-two"], {
queryParams: { level: e, id: id, name: name },
});
} }
//获取表格信息 //获取表格信息
getAlltabledate(){ getAlltabledate() {
let paramsdata:any = { let paramsdata: any = {
PageNumber: this.PageNumber || '1', PageNumber: this.PageNumber || "1",
PageSize: this.pageSizeOptions[0], PageSize: this.pageSizeOptions[0],
Sort: null, Sort: null,
SortType: null, SortType: null,
} };
this.http.get("/api/Papers",{params:paramsdata}).subscribe((data:any)=>{ this.http
this.dataSource=data.items .get("/api/Papers", { params: paramsdata })
this.length=data.totalCount .subscribe((data: any) => {
console.log(this.dataSource) this.dataSource = data.items;
}) this.length = data.totalCount;
console.log(this.dataSource);
});
} }
//分页事件 //分页事件
chagePage(e){ chagePage(e) {
this.PageNumber = e.pageIndex+1 this.PageNumber = e.pageIndex + 1;
this.getAlltabledate() this.getAlltabledate();
}
look(item) {
console.log(item);
} }
} }

30
src/app/examiner/mark-papers-two/mark-papers-two.component.html

@ -11,14 +11,14 @@
<div class="queryBox"> <div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;font-size: 20px;">{{headtext}}</label> <label style="margin-right: 10px;font-size: 20px;">{{headtext}}</label>
</div> </div>
</div> </div>
</div> </div>
<div class="centertable"> <div class="centertable">
<table > <table>
<thead> <thead>
<th style="width: 15%;">考试人</th> <th style="width: 15%;">考试人</th>
<th style="width: 15%;">考核中队</th> <th style="width: 15%;">考核中队</th>
@ -33,21 +33,21 @@
<td>{{item.examineeName}}</td> <td>{{item.examineeName}}</td>
<td>{{getname}}</td> <td>{{getname}}</td>
<td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td> <td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td [ngClass]="{'green': item.isMarked == true,'red':item.isMarked == false}">{{item.isMarked== true?"已阅卷":"未阅卷"}}</td> <td [ngClass]="{'green': item.isMarked == true,'red':item.isMarked == false}">{{item.isMarked==
true?"已阅卷":"未阅卷"}}</td>
<td>{{item.totalScore}}</td> <td>{{item.totalScore}}</td>
<td>{{item.comment}}</td> <td>{{item.comment}}</td>
<td > <td>
<span style="color: #01CFD5;cursor: pointer;" (click)='reviewFiles(item)'>阅卷</span> <span (click)="look(item)">批阅记录</span>
<span (click)='reviewFiles(item)'>阅卷</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<mat-paginator [length]="length" <mat-paginator [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions"
[pageSize]="pageSize" (page)="chagePage($event)">
[pageSizeOptions]="pageSizeOptions" </mat-paginator>
(page)="chagePage($event)">
</mat-paginator>
</div> </div>
</div> </div>

198
src/app/examiner/mark-papers-two/mark-papers-two.component.scss

@ -1,95 +1,127 @@
table { table {
width: 100%; width: 100%;
text-align: center;
.cdk-header-cell {
text-align: center; text-align: center;
.cdk-header-cell {
text-align: center;
}
}
.content {
width: 100%;
height: 100%;
overflow: hidden;
background: #F2F5F6;
overflow-y: auto;
} }
.header { }
width: 100%;
padding: 10px; .content {
margin-bottom: 10px; width: 100%;
height: 100%;
overflow: hidden;
background: #F2F5F6;
overflow-y: auto;
}
.header {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
.queryBox {
box-sizing: border-box; box-sizing: border-box;
.queryBox { padding: 5px 15px;
box-sizing: border-box; display: flex;
padding: 5px 15px; flex-direction: row;
display: flex; flex-wrap: wrap;
flex-direction: row; align-items: center;
flex-wrap: wrap; justify-content: left;
align-items:center;
justify-content:left; .queryField {
.queryField { margin: 0 25px;
margin: 0 25px; font-size: 14px;
font-size: 14px;
input { input {
width: 320px; width: 320px;
height: 44px; height: 44px;
line-height: 34px; line-height: 34px;
border-radius: 5px; border-radius: 5px;
padding-left: 5px; padding-left: 5px;
outline: none; outline: none;
border: 1px solid rgb(226, 211, 211); border: 1px solid rgb(226, 211, 211);
}
button {
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
outline:0 none !important;
}
} }
.headerright{
float: right; button {
} border: none;
} //queryBox color: white;
} padding: 10px 25px;
.centertable{ text-align: center;
width: 95%; text-decoration: none;
margin-right: 40px; display: inline-block;
margin-left: 40px;
background-color: #FFFFFF;
table{
td,th{
height: 48px;
font-size: 16px; font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
outline: 0 none !important;
} }
td{
border-bottom: 1px solid #F2F5F6;
}
thead{
background-color:#F5FDFE;
}
.green{
color: #07CDCF;
}
.red{
color: #FF8678;
} }
.headerright {
float: right;
} }
} }
.operationSpan{ //queryBox
margin: 0 10px; }
.spanbtn {
font-weight: 550; .centertable {
cursor: pointer; width: 95%;
margin-right: 40px;
margin-left: 40px;
background-color: #FFFFFF;
table {
td,
th {
height: 48px;
font-size: 16px;
}
td {
border-bottom: 1px solid #F2F5F6;
} }
.green{ color: #04ced1; }
.red{ color: #FF8678 } thead {
.gray{ color: gray; } background-color: #F5FDFE;
}
.green {
color: #07CDCF;
}
.red {
color: #FF8678;
}
}
span {
cursor: pointer;
margin: 0 5px;
color: #01CFD5
}
}
.operationSpan {
margin: 0 10px;
.spanbtn {
font-weight: 550;
cursor: pointer;
}
.green {
color: #04ced1;
}
.red {
color: #FF8678
}
.gray {
color: gray;
} }
}

6
src/app/examiner/mark-papers-two/mark-papers-two.component.ts

@ -19,6 +19,7 @@ import { PageEvent } from "@angular/material/paginator";
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar";
import { FormControl } from "@angular/forms"; import { FormControl } from "@angular/forms";
import { Router, ActivatedRoute } from "@angular/router"; import { Router, ActivatedRoute } from "@angular/router";
import { ReviewRecordComponent } from "./review-record/review-record.component";
@Component({ @Component({
selector: "app-mark-papers-two", selector: "app-mark-papers-two",
@ -96,4 +97,9 @@ export class MarkPapersTwoComponent implements OnInit {
reviewFiles(e) { reviewFiles(e) {
window.open(`/reviewFiles?examId=${e.id}&paperType=1`); window.open(`/reviewFiles?examId=${e.id}&paperType=1`);
} }
look(item) {
console.log(item);
const dialogRef = this.dialog.open(ReviewRecordComponent, { data: item });
dialogRef.afterClosed().subscribe((res) => {});
}
} }

28
src/app/examiner/mark-papers-two/review-record/review-record.component.html

@ -0,0 +1,28 @@
<div class="box">
<h1>批改记录</h1>
<div class="content" *ngFor="let item of this.modifyHistory">
<div class="itembox">
<span>批改人:</span>
<div>
{{item.modifiedBy.realName}}
</div>
</div>
<div class="itembox">
<span>批改时间:</span>
<div>
{{item.modifiedTime | date:'yyyy-MM-dd HH:mm'}}
</div>
</div>
<div class="itembox">
<span>批改内容:</span>
<div>
<div *ngFor="let i of item.data">
<p style="color: #1890ff;">{{i.name}} : </p>
<p *ngFor="let e of i.data">
<span>{{e.name}} : </span>由{{ e.oldIsRight }}修改为{{ e.newIsRight }}
</p>
</div>
</div>
</div>
</div>
</div>

29
src/app/examiner/mark-papers-two/review-record/review-record.component.scss

@ -0,0 +1,29 @@
.box {
width: 550px;
font-size: 14px;
max-height: 500px;
overflow-y: auto;
}
h1{
font-weight: 600;
text-align: center;
}
.content {
box-sizing: border-box;
padding: 12px 0;
border-bottom: 1px dashed rgb(182, 180, 180);
}
.itembox {
display: flex;
span {
margin-right: 6px;
}
div {
p {
margin-bottom: 3px;
}
}
}

25
src/app/examiner/mark-papers-two/review-record/review-record.component.spec.ts

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ReviewRecordComponent } from './review-record.component';
describe('ReviewRecordComponent', () => {
let component: ReviewRecordComponent;
let fixture: ComponentFixture<ReviewRecordComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ReviewRecordComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ReviewRecordComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

56
src/app/examiner/mark-papers-two/review-record/review-record.component.ts

@ -0,0 +1,56 @@
import { HttpClient } from "@angular/common/http";
import { Component, OnInit, Inject } from "@angular/core";
import {
MAT_DIALOG_DATA,
MatDialog,
MatDialogRef,
} from "@angular/material/dialog";
import { MatSnackBar } from "@angular/material/snack-bar";
@Component({
selector: "app-review-record",
templateUrl: "./review-record.component.html",
styleUrls: ["./review-record.component.scss"],
})
export class ReviewRecordComponent implements OnInit {
constructor(
public http: HttpClient,
public dialog: MatDialog,
public snackBar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data: any,
public dialogRef: MatDialogRef<any>
) {}
modifyHistory = [];
ngOnInit(): void {
console.log(this.data);
this.http
.get(`/api/Examinations/${this.data.id}`)
.subscribe((data: any) => {
if (!data.modifyHistory) {
return;
}
let modifyHistory = JSON.parse(data.modifyHistory);
modifyHistory.forEach((element) => {
element.data.forEach((item) => {
item.data.forEach((i) => {
if (i.name.indexOf("作战部署") == -1) {
i.oldIsRight
? (i.oldIsRight = "正确")
: (i.oldIsRight = "错误");
i.newIsRight
? (i.newIsRight = "正确")
: (i.newIsRight = "错误");
}else{
i.oldIsRight = i.oldIsRight+'分'
i.newIsRight = i.newIsRight+'分'
}
});
});
});
this.modifyHistory = modifyHistory.reverse();
console.log(888, this.modifyHistory);
});
}
}

3
src/app/examiner/review-files/editFraction.html

@ -1,6 +1,7 @@
<div class="editRightWrong"> <div class="editRightWrong">
<p style="margin-bottom: 12px;">得分(最高分{{data.paperPlanInfo.score}}分):</p>
<div class="content"> <div class="content">
<input type="text" [(ngModel)]="isScore"> <input type="number" [(ngModel)]="isScore">
</div> </div>
<div mat-dialog-actions> <div mat-dialog-actions>
<button mat-raised-button color="primary" (click)='submit()'>确定</button> <button mat-raised-button color="primary" (click)='submit()'>确定</button>

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

@ -9,7 +9,6 @@ import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar";
import { ActivatedRoute } from "@angular/router"; import { ActivatedRoute } from "@angular/router";
import { EvaluateComponent } from "./evaluate/evaluate.component"; import { EvaluateComponent } from "./evaluate/evaluate.component";
@Component({ @Component({
selector: "app-review-files", selector: "app-review-files",
templateUrl: "./review-files.component.html", templateUrl: "./review-files.component.html",
@ -36,6 +35,7 @@ export class ReviewFilesComponent implements OnInit {
let isHidden = document.hidden; let isHidden = document.hidden;
if (!isHidden) { if (!isHidden) {
this.getUnitPlans(false); this.getUnitPlans(false);
// console.log("此HTML标签焦点事件", this.correctionRecordData);
} }
}); });
} }
@ -352,72 +352,94 @@ export class ReviewFilesComponent implements OnInit {
//forEach //forEach
}); });
} }
oldData=[] //基本信息 correctionRecordData = []; //批改记录
//修改结果 //修改结果
editResults(e) { editResults(e) {
console.log("e", e);
let data = e; let data = e;
const dialogRef = this.dialog.open(editRightWrongComponent, { data }); const dialogRef = this.dialog.open(editRightWrongComponent, { data });
dialogRef.afterClosed().subscribe((data) => { dialogRef.afterClosed().subscribe((res) => {
if (data) { if (!res) {
let index=0 return;
if (e.isRight != data.isChecked) { }
this.oldData.forEach((element:any,i)=>{ let isExist = this.correctionRecordData.findIndex(
if(element.name==e.name){ (item) => item.name === this.selectPaper.companyInfo.name
// element.oldIsRight=e.isRight );
// element.newIsRight=data.isChecked let correctionRecordDataIndex;
this.oldData.splice(i, 1) if (isExist !== -1) {
index++ correctionRecordDataIndex = isExist;
return } else {
} this.correctionRecordData.push({
}) name: this.selectPaper.companyInfo.name,
if(!index){ data: [],
this.oldData.push( });
{ correctionRecordDataIndex = this.correctionRecordData.length - 1;
name:e.name, }
oldIsRight:e.isRight, //如果值变了
newIsRight:data.isChecked if (e.isRight != res.isChecked) {
} let isFind = this.correctionRecordData[
) correctionRecordDataIndex
} ].data.findIndex((ele) => ele.name === e.name);
console.log(this.oldData); if (isFind === -1) {
this.correctionRecordData[correctionRecordDataIndex].data.push({
e.isRight = data.isChecked; name: e.name,
this.getPaperGrade(); oldIsRight: e.isRight,
newIsRight: res.isChecked,
});
} else {
//如果数组中已经有值 说明改过但又改回来了
this.correctionRecordData[correctionRecordDataIndex].data.splice(
isFind,
1
);
} }
e.isRight = res.isChecked;
this.getPaperGrade();
} }
}); });
} }
oldData2=[] //作战部署
editFraction(e) { editFraction(e) {
console.log("e", e);
let data = e; let data = e;
console.log(e);
const dialogRef = this.dialog.open(editFractionComponent, { data }); const dialogRef = this.dialog.open(editFractionComponent, { data });
dialogRef.afterClosed().subscribe((data) => { dialogRef.afterClosed().subscribe((res) => {
if (data) { if (!res) {
if (e.score != data.isScore) { return;
let index=0 }
this.oldData2.forEach((element:any,i)=>{ let isExist = this.correctionRecordData.findIndex(
if(element.id==e.name){ (item) => item.name === this.selectPaper.companyInfo.name
element.newIsScore=data.isScore );
this.oldData2.splice(i, 1) let correctionRecordDataIndex;
index++ if (isExist !== -1) {
return correctionRecordDataIndex = isExist;
} } else {
}) this.correctionRecordData.push({
if(!index){ name: this.selectPaper.companyInfo.name,
this.oldData2.push( data: [],
{ });
name:e.id, correctionRecordDataIndex = this.correctionRecordData.length - 1;
oldIsScore:e.score, }
newIsScore:data.isScore //如果值变了
} if (e.score != res.isScore) {
) let isFind = this.correctionRecordData[
} correctionRecordDataIndex
e.score = data.isScore ].data.findIndex((ele) => ele.name === e.name);
this.getPaperGrade(); if (isFind === -1) {
this.correctionRecordData[correctionRecordDataIndex].data.push({
name: "作战部署-" + e.paperPlanInfo.title,
oldIsRight: e.score,
newIsRight: res.isScore,
});
} else {
//如果数组中已经有值 说明改过但又改回来了
this.correctionRecordData[correctionRecordDataIndex].data.splice(
isFind,
1
);
} }
console.log(this.correctionRecordData);
e.score = res.isScore;
this.getPaperGrade();
} }
}); });
} }
@ -458,7 +480,7 @@ export class ReviewFilesComponent implements OnInit {
dialogRef.afterClosed().subscribe((result) => { dialogRef.afterClosed().subscribe((result) => {
// console.log("The dialog was closed", result); // console.log("The dialog was closed", result);
if (result.type) { if (result.type) {
let bodyData = { let bodyData: any = {
id: this.paperData.id, id: this.paperData.id,
isMarked: true, isMarked: true,
totalScore: 0, totalScore: 0,
@ -507,8 +529,24 @@ export class ReviewFilesComponent implements OnInit {
element.importLocationData = JSON.stringify( element.importLocationData = JSON.stringify(
element.importLocationData element.importLocationData
); );
console.log(this.correctionRecordData);
// console.log("element", element);
}); });
// console.log(456, this.paperData);
let arr = [];
if (this.paperData.modifyHistory) {
arr = JSON.parse(this.paperData.modifyHistory);
}
let obj = {
modifiedBy: JSON.parse(sessionStorage.getItem("creatorData")),
modifiedTime: new Date(),
data: this.correctionRecordData,
};
arr.push(obj);
bodyData.examinationDataInfo = paramsData; bodyData.examinationDataInfo = paramsData;
bodyData.modifyHistory = JSON.stringify(arr);
this.http this.http
.put(`/api/Examinations/${this.paperData.id}`, bodyData) .put(`/api/Examinations/${this.paperData.id}`, bodyData)
.subscribe((data) => { .subscribe((data) => {
@ -597,14 +635,28 @@ export class editFractionComponent implements OnInit {
ngOnInit(): void { ngOnInit(): void {
console.log(this.data); console.log(this.data);
this.isScore = JSON.parse(JSON.stringify(this.data.score)); this.isScore = JSON.parse(JSON.stringify(this.data.score));
} }
isScore: Number; //分数 isScore: Number; //分数
submit() { submit() {
let data = { isScore: this.isScore }; if (this.isScore > this.data.paperPlanInfo.score) {
this.dialogRef.close(data); alert("超出最大分值!");
} else {
let params: any = {
paperPlanId: this.data.paperPlanId,
examinationId: this.data.examinationId,
score: this.isScore,
remark: this.data.remark,
};
this.http
.put("/api/ExaminationPlans/ModifyScore", "", { params: params })
.subscribe((res) => {
let data = { isScore: this.isScore };
this.dialogRef.close(data);
});
}
} }
} }

Loading…
Cancel
Save