Browse Source

[新增]基本信息考题增加编辑模式

master
邵佳豪 4 years ago
parent
commit
7f9dfe8e52
  1. 12
      src/app/examiner/create-test-score/create-test-score.component.html
  2. 28
      src/app/examiner/create-test-score/create-test-score.component.ts
  3. 2
      src/app/examiner/examiner-index/examiner-index.component.html
  4. 23
      src/app/examiner/examiner-index/examiner-index.component.ts

12
src/app/examiner/create-test-score/create-test-score.component.html

@ -66,7 +66,7 @@
[nzData]="unit.basicInfoNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.basicInfoNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -109,7 +109,7 @@
[nzData]="unit.aroundNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.aroundNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -152,7 +152,7 @@
[nzData]="unit.keySiteNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.keySiteNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -195,7 +195,7 @@
[nzData]="unit.funDivNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.funDivNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -238,7 +238,7 @@
[nzData]="unit.fireFacNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.fireFacNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -267,7 +267,7 @@
<div class="addPlan" (click)="addPlan()">
<mat-icon style="vertical-align: text-top">add_circle_outline</mat-icon>添加预案
</div>
<div class="planList">
<div class="planList" *ngIf="unitId[selectedUnitIndex]">
<table>
<tr >
<td>预案名称</td>

28
src/app/examiner/create-test-score/create-test-score.component.ts

@ -27,7 +27,15 @@ export class CreateTestScoreComponent implements OnInit {
}, 0);
}
async ngOnInit(): Promise<void> {
ngOnInit(): void {
if(this.route.snapshot.queryParams.pattern && this.route.snapshot.queryParams.pattern == 'edit'){
this.getSoloPaper()
}else{
this.unitId = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
for (let y = 0, length = this.unitId.length; y < length; y++){
let element = this.unitId[y]
element.score = 0
@ -57,12 +65,26 @@ export class CreateTestScoreComponent implements OnInit {
})
})
})
this.getPaperPlans().then(()=>{
this.planItemScore()
})
}
}
//获得指定试卷信息。
getSoloPaper(){
this.http.get(`/api/Papers/${sessionStorage.getItem('paperId')}`).subscribe((data:any) => {
data.paperDataInfo.forEach(item => {
this.unitId.push(JSON.parse(item.originalData))
})
console.log('试卷信息',this.unitId)
this.planItemScore()
})
}
//获取所有考试设定
async getPaperPlans(){
@ -90,7 +112,7 @@ export class CreateTestScoreComponent implements OnInit {
clickUnitName(key){
this.selectedUnitIndex = key
}
unitId:any = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
unitId:any = []
//获取单位基本信息
async getUnitData(){

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

@ -84,7 +84,7 @@
<!-- <td [ngClass]="{'green': item.testState == '开考中','red':item.testState == '已结束'}">{{item.testState}}</td> -->
<td [ngClass]="{'green': item.status == '1','red':item.status == '2'}">{{item.status=="2"?"已结束":item.status=="0"?"未开考":"开考中"}}</td>
<td>
<span style="color: #07CDCF;margin-right: 10px;">编辑</span>
<span style="color: #07CDCF;margin-right: 10px;cursor: pointer;" (click)="editPaper(item)">编辑</span>
<span style="color: #07CDCF;">详情</span>
<span *ngIf="item.status=='0'" style="color: #FF8678;margin-left: 10px;cursor: pointer;" (click)="deleteExam(item.id)">删除</span>
</td>

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

@ -34,11 +34,18 @@ export class ExaminerIndexComponent implements OnInit {
this.getunitdata();
this.getOrganizations();
this.getUnittype();
this.getAlltabledate()
setInterval(()=>this.getAlltabledate(),60000)
//this.getHelp()
this.getAlltabledate();
this.getProfiles()
}
//获取登录账号的个人资料
Profiles:any
getProfiles(){
this.http.get('/api/ExamAccounts/Profiles').subscribe((data:any) => {
console.log(data)
this.Profiles = data
sessionStorage.setItem('creatorData',JSON.stringify(data))
})
}
displayedColumns: string[] = ['name','startTime','endTime', 'examzhong','scc'];
tabledataSource:any
accound
@ -115,6 +122,14 @@ export class ExaminerIndexComponent implements OnInit {
)
}
//编辑试卷
editPaper(item){
// console.log(item)
sessionStorage.setItem("paperId",item.id)
this.router.navigateByUrl("/examiner/create-test-score?pattern=edit")
}
//获得所有组织机构
getOrganizations(){
this.http.get('/api/Organizations').subscribe(

Loading…
Cancel
Save