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