Browse Source

[修改]考官考生的考核对战显示真实数据

master
chenjingyu 4 years ago
parent
commit
f4740a1bb8
  1. 4
      src/app/examiner/examiner-index/examiner-index.component.html
  2. 2
      src/app/examiner/examiner-index/examiner-index.component.ts
  3. 6
      src/app/examiner/mark-papers-index/mark-papers-index.component.html
  4. 6
      src/app/examiner/mark-papers-index/mark-papers-index.component.ts
  5. 4
      src/app/examiner/mark-papers-two/mark-papers-two.component.html
  6. 5
      src/app/examiner/mark-papers-two/mark-papers-two.component.ts
  7. 8
      src/app/student/student-exam-record/student-exam-record.component.html
  8. 4
      src/app/student/student-index/student-index.component.html

4
src/app/examiner/examiner-index/examiner-index.component.html

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-11 09:06:03 * @Date: 2020-12-11 09:06:03
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-20 09:33:02 * @LastEditTime: 2020-12-29 10:11:11
--> -->
<div class="content"> <div class="content">
<div class="header"> <div class="header">
@ -78,7 +78,7 @@
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource"> <tr *ngFor="let item of tabledataSource">
<td>{{item.title}}</td> <td>{{item.title}}</td>
<td>广西总队</td> <td>{{item.organizationsName}}</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 [ngClass]="{'green': item.testState == '开考中','red':item.testState == '已结束'}">{{item.testState}}</td> --> <!-- <td [ngClass]="{'green': item.testState == '开考中','red':item.testState == '已结束'}">{{item.testState}}</td> -->

2
src/app/examiner/examiner-index/examiner-index.component.ts

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-11 09:06:03 * @Date: 2020-12-11 09:06:03
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-23 09:45:28 * @LastEditTime: 2020-12-29 15:18:12
*/ */
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core'; import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core';
import {HttpClient} from '@angular/common/http' import {HttpClient} from '@angular/common/http'

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

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-14 16:30:31 * @Date: 2020-12-14 16:30:31
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-25 08:59:47 * @LastEditTime: 2020-12-29 14:52:17
--> -->
<div class="content"> <div class="content">
<div class="header"> <div class="header">
@ -36,11 +36,11 @@
<tbody> <tbody>
<tr *ngFor="let item of dataSource"> <tr *ngFor="let item of dataSource">
<td>{{item.title}}</td> <td>{{item.title}}</td>
<td>广西总队</td> <td>{{item.organizationsName}}</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)">阅卷</span> <span id={{item.name}} style="color: #07CDCF;cursor: pointer;" (click)="markTwo(item.title,item.id,item.organizationsName)">阅卷</span>
</td> </td>
</tr> </tr>
</tbody> </tbody>

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

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-14 16:30:31 * @Date: 2020-12-14 16:30:31
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-25 09:00:41 * @LastEditTime: 2020-12-29 14:52:09
*/ */
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'
@ -55,9 +55,9 @@ export class MarkPapersIndexComponent implements OnInit {
this.markDate=undefined this.markDate=undefined
} }
//点击阅卷跳转 //点击阅卷跳转
markTwo(e,id){ 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}}) this.router.navigate(['/home/mark-papers-index/mark-papers-two'],{queryParams:{'level':e,'id':id,'name':name}})
} }
//获取表格信息 //获取表格信息
getAlltabledate(){ getAlltabledate(){

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

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-14 17:21:02 * @Date: 2020-12-14 17:21:02
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-28 15:09:51 * @LastEditTime: 2020-12-29 14:53:39
--> -->
<div class="content"> <div class="content">
<div class="header"> <div class="header">
@ -30,7 +30,7 @@
<tbody> <tbody>
<tr *ngFor="let item of dataSource"> <tr *ngFor="let item of dataSource">
<td>{{item.examineeName}}</td> <td>{{item.examineeName}}</td>
<td>广西总队</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>90</td> <td>90</td>

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

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-14 17:21:02 * @Date: 2020-12-14 17:21:02
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-25 09:15:42 * @LastEditTime: 2020-12-29 14:53:15
*/ */
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'
@ -29,12 +29,14 @@ export class MarkPapersTwoComponent implements OnInit {
this.activatedRoute.queryParams.subscribe(param=>{ this.activatedRoute.queryParams.subscribe(param=>{
this.headtext=param.level this.headtext=param.level
this.getid=param.id this.getid=param.id
this.getname=param.name
}); });
this.getAlltabledate() this.getAlltabledate()
} }
headtext headtext
getid//试卷id getid//试卷id
getname//考核中队
dataSource dataSource
//分页 //分页
@ -58,6 +60,7 @@ export class MarkPapersTwoComponent implements OnInit {
this.http.get("/api/Examinations",{params:paramsdata}).subscribe((data:any)=>{ this.http.get("/api/Examinations",{params:paramsdata}).subscribe((data:any)=>{
this.dataSource=data.items this.dataSource=data.items
this.length=data.totalCount this.length=data.totalCount
console.log(this.dataSource)
}) })
} }

8
src/app/student/student-exam-record/student-exam-record.component.html

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-20 16:26:44 * @Date: 2020-12-20 16:26:44
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-23 13:53:33 * @LastEditTime: 2020-12-29 15:09:36
--> -->
<div class="content"> <div class="content">
<div class="centertable"> <div class="centertable">
@ -20,9 +20,9 @@
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource"> <tr *ngFor="let item of tabledataSource">
<td>{{item.name}}</td> <td>{{item.name}}</td>
<td>张三</td> <td>{{item.examineeName}}</td>
<td>广西总队</td> <td>{{item.paperInfo.organizationsName}}</td>
<td>{{item.serverTime|date:'yyyy-MM-dd HH:mm'}}</td> <td>{{item.paperInfo.startTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td style="color: #FF8678;">90分</td> <td style="color: #FF8678;">90分</td>
<td style="color: #07CDCF;cursor: pointer;">查看</td> <td style="color: #07CDCF;cursor: pointer;">查看</td>
</tr> </tr>

4
src/app/student/student-index/student-index.component.html

@ -4,7 +4,7 @@
* @Author: sueRimn * @Author: sueRimn
* @Date: 2020-12-20 15:01:30 * @Date: 2020-12-20 15:01:30
* @LastEditors: sueRimn * @LastEditors: sueRimn
* @LastEditTime: 2020-12-21 17:10:56 * @LastEditTime: 2020-12-29 10:15:42
--> -->
<div class="content"> <div class="content">
<div class="centertable"> <div class="centertable">
@ -20,7 +20,7 @@
<tbody> <tbody>
<tr *ngFor="let item of tabledataSource"> <tr *ngFor="let item of tabledataSource">
<td>{{item.title}}</td> <td>{{item.title}}</td>
<td>广西总队</td> <td>{{item.organizationsName}}</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>{{item.duration}}分钟</td> <td>{{item.duration}}分钟</td>

Loading…
Cancel
Save