From 9379358560dd221308b4dc78b643ca0efb0bd098 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Fri, 25 Dec 2020 09:58:11 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E8=80=83=E5=8D=B7?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/app.component.ts | 1 + .../examination-details.component.html | 70 ++++++++++++++++++- .../examination-details.component.scss | 61 +++++++++++++++- .../examination-details.component.ts | 8 +-- 4 files changed, 133 insertions(+), 7 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 388e788..f230160 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -33,6 +33,7 @@ export class AppComponent { }) } else { sessionStorage.clear() + localStorage.clear() this.token.delete() } diff --git a/src/app/student/examination-details/examination-details.component.html b/src/app/student/examination-details/examination-details.component.html index 55bb647..ef6601b 100644 --- a/src/app/student/examination-details/examination-details.component.html +++ b/src/app/student/examination-details/examination-details.component.html @@ -1,6 +1,6 @@
-
+
@@ -24,7 +24,8 @@
- + + @@ -32,6 +33,71 @@ + + + + + + + +
+
{{item.name}}
+
+
+
+ + + + + + + +
+
{{item.name}}
+
+
+
{{element.propertyName}}
+
+ + +
+
+
+
+
+ + + + + + + +
+
{{item.name}}
+
+
+
{{element.propertyName}}
+
+ + +
+
+
+
+
+ + + + + + + +
+
{{item.name}}
+
+
+
+
diff --git a/src/app/student/examination-details/examination-details.component.scss b/src/app/student/examination-details/examination-details.component.scss index 3f050c4..3822305 100644 --- a/src/app/student/examination-details/examination-details.component.scss +++ b/src/app/student/examination-details/examination-details.component.scss @@ -5,7 +5,7 @@ display: flex; flex-direction: column; box-sizing: border-box; - .cneter { + .center { flex: 1; overflow: hidden; background-color: #F2F5F6; @@ -111,4 +111,63 @@ background-color: #F5FDFE; label { display: inline-block; } } +} + +input { + border-radius: 5px; + border: 1px solid rgb(212, 205, 205); + outline: none; + height: 30px; + padding-left: 10px; +} +//考生 具体考题 通用样式 +.publicTest { + display: flex; + flex-direction: row; + flex-wrap: wrap; + padding: 0 10px; + .publicTitle { + margin-top: 10px; + width: 100%; + height: 30px; + line-height: 30px; + padding-left: 10px; + } + .publicInput { + margin: 10px; + width: 48%; + height: 36px; + line-height: 36px; + text-align: left; + overflow: hidden; + label { + display: inline-block; + width: 40%; + text-align: right; + margin-right: 10px; + } + input { + width: 50%; + } + } + .publicTable { + box-sizing: border-box; + width: 100%; + margin: 10px; + display: flex; + padding: 0 25px; + .tableRow { + flex: 1; + overflow: hidden; + .tabelHeader { background: #F5FDFE; } + >div { + width: 100%; + height: 36px; + line-height: 36px; + text-align: center; + margin: 5px; + input { width: 60%; } + } + } + } } \ 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 dc7ab73..6589d88 100644 --- a/src/app/student/examination-details/examination-details.component.ts +++ b/src/app/student/examination-details/examination-details.component.ts @@ -39,7 +39,7 @@ export class ExaminationDetailsComponent implements OnInit { this.paperCompanyData = JSON.parse( JSON.stringify(data.paperDataInfo) ) //具体考卷 this.selectPaper = this.paperCompanyData[0] || {id:null} //当前选择考卷 this.handlePaperData() - resolve() + resolve(1) }) }) @@ -77,12 +77,13 @@ export class ExaminationDetailsComponent implements OnInit { this.http.get(`/api/PaperPlans`,{params:params}).subscribe(data => { item.planList = [] item.planList = data - resolve() + resolve(1) }) }) } this.calculateScore() } + examScore:any = 0//整个试卷的总分 //计算分数 calculateScore(){ @@ -108,10 +109,9 @@ export class ExaminationDetailsComponent implements OnInit { console.log(678,this.paperCompanyData) } - //交卷 uploadPaper () { - console.log('交卷') + console.log(this.paperCompanyData) } }