From 964a15643de63b1445b39891098a96daf008e844 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Wed, 23 Dec 2020 11:41:04 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E8=80=83=E5=8D=B7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../examination-details.component.html | 8 +++-- .../examination-details.component.scss | 18 +++++++++- .../examination-details.component.ts | 35 ++++++++++++++++--- 3 files changed, 52 insertions(+), 9 deletions(-) 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(){ } + }