diff --git a/src/app/student/examination-details/examination-details.component.html b/src/app/student/examination-details/examination-details.component.html
index 274315c..94bf9a0 100644
--- a/src/app/student/examination-details/examination-details.component.html
+++ b/src/app/student/examination-details/examination-details.component.html
@@ -3,9 +3,11 @@
-
-
-
+
+
+
+
{{item.companyInfo.name}}
+
diff --git a/src/app/student/examination-details/examination-details.component.scss b/src/app/student/examination-details/examination-details.component.scss
index a23667a..ad3fe6b 100644
--- a/src/app/student/examination-details/examination-details.component.scss
+++ b/src/app/student/examination-details/examination-details.component.scss
@@ -19,10 +19,20 @@
}
.right {
flex: 80%;
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
}
}
}
+//文本溢出
+.overflowText {
+ overflow: hidden;
+ text-overflow:ellipsis;
+ white-space: nowrap;
+}
+
//左侧
.headerLeft{
display: flex;
@@ -36,8 +46,14 @@
align-items: center;
justify-content: center;
cursor: pointer;
- >div {flex: 1; overflow: hidden; text-align: center;}
+ >div {flex: 1; text-align: center;}
height: 36px;
padding: 0 25px;
margin: 0 30px;
+ font-size: 14px;
+ border-radius: 3px;
+}
+.selectPaper {
+ background-color: #07CDCF;
+ color: #fff;
}
\ No newline at end of file
diff --git a/src/app/student/examination-details/examination-details.component.ts b/src/app/student/examination-details/examination-details.component.ts
index af843a9..cfff501 100644
--- a/src/app/student/examination-details/examination-details.component.ts
+++ b/src/app/student/examination-details/examination-details.component.ts
@@ -15,25 +15,50 @@ export class ExaminationDetailsComponent implements OnInit {
async ngOnInit(): Promise {
await this.getTestInfo()
- console.log(2)
}
-
- paperData:any//试卷信息
+
+ paperData:any //试卷信息
+ paperCompanyData:any = []; //考生具体考卷
+ selectPaper:any = {id:null}; //选择当前考卷
+
//获取考卷
async getTestInfo () {
let id = this.route.snapshot.queryParams.paperId
await new Promise((resolve, reject) => {
this.http.get(`/api/Papers/${id}`).subscribe((data:any)=>{
- console.log(data)
this.paperData = data
+ this.paperData.paperDataInfo.forEach(element => {
+ element.adjoinData? element.adjoinData = JSON.parse(element.adjoinData) : null
+ element.basicInfoData? element.basicInfoData = JSON.parse(element.basicInfoData) : null
+ element.facilityData? element.facilityData = JSON.parse(element.facilityData) : null
+ element.functionalDivisionData? element.functionalDivisionData = JSON.parse(element.functionalDivisionData) : null
+ element.importLocationData? element.importLocationData = JSON.parse(element.importLocationData) : null
+ });
+ this.paperCompanyData = JSON.parse( JSON.stringify(data.paperDataInfo) ) //具体考卷
+ this.selectPaper = this.paperCompanyData[0] || {id:null} //当前选择考卷
+ this.handlePaperData()
resolve(1)
})
})
-
+
+ }
+
+ //处理考卷 数据格式
+ handlePaperData () {
+ console.log(this.selectPaper)
+ }
+
+ //切换 选择考卷
+ togglePaper (e) {
+ if (this.selectPaper.id != e.id) {
+ this.selectPaper = e
+ this.handlePaperData()
+ }
}
//获得单位预案设定
getUnitPlans(){
}
+
}