From 1797683649b0c4d97060a97e8eaf7b88c930ae51 Mon Sep 17 00:00:00 2001
From: cpf <1105965053@qq.com>
Date: Thu, 24 Dec 2020 10:22:14 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E8=80=83=E7=94=9F?=
=?UTF-8?q?=E8=80=83=E8=AF=95=E7=95=8C=E9=9D=A2=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 | 22 +++++++-
.../examination-details.component.scss | 54 +++++++++++++++++++
.../examination-details.component.ts | 13 +++++
3 files changed, 88 insertions(+), 1 deletion(-)
diff --git a/src/app/student/examination-details/examination-details.component.html b/src/app/student/examination-details/examination-details.component.html
index 94bf9a0..2da6af4 100644
--- a/src/app/student/examination-details/examination-details.component.html
+++ b/src/app/student/examination-details/examination-details.component.html
@@ -10,7 +10,27 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
作战部署
+
diff --git a/src/app/student/examination-details/examination-details.component.scss b/src/app/student/examination-details/examination-details.component.scss
index ad3fe6b..1c5646e 100644
--- a/src/app/student/examination-details/examination-details.component.scss
+++ b/src/app/student/examination-details/examination-details.component.scss
@@ -22,6 +22,10 @@
overflow: hidden;
display: flex;
flex-direction: column;
+ .centerRight {
+ flex: 1;
+ overflow: hidden;
+ }
}
}
}
@@ -56,4 +60,54 @@
.selectPaper {
background-color: #07CDCF;
color: #fff;
+}
+
+//中间内容区
+.headerRight {
+ width: 100%;
+ height: 50px;
+ line-height: 50px;
+ box-sizing: border-box;
+ padding-right: 10px;
+ overflow: hidden;
+ background-color: #F2F5F6;
+ button {
+ width: 80px;
+ height: 32px;
+ border-radius: 5px;
+ background-color: #07CDCF;
+ color: #fff;
+ border: none;
+ outline: none;
+ float: right;
+ margin: 9px 25px 0 0;
+ }
+ label {
+ cursor: pointer;
+ display: inline-block;
+ width: 120px;
+ text-align: center;
+ color: #1E2323;
+ opacity: 0.5;
+ }
+ .selectPaperType {
+ color: #07CDCF;
+ opacity: 1;
+ background-color: #fff;
+ border-top: 3px solid #07CDCF;
+ }
+}
+
+.mark { color: #FF8678; }
+.mariginRight { margin-right: 25px; }
+.paperCenter {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ padding: 5px;
+ overflow-y: auto;
+ .panelHeader {
+ background-color: #F5FDFE;
+ label { display: inline-block; }
+ }
}
\ 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 cfff501..8c9847e 100644
--- a/src/app/student/examination-details/examination-details.component.ts
+++ b/src/app/student/examination-details/examination-details.component.ts
@@ -20,6 +20,7 @@ export class ExaminationDetailsComponent implements OnInit {
paperData:any //试卷信息
paperCompanyData:any = []; //考生具体考卷
selectPaper:any = {id:null}; //选择当前考卷
+ selectPaperType:string = '1'; //选择当前考卷内容
//获取考卷
async getTestInfo () {
@@ -56,9 +57,21 @@ export class ExaminationDetailsComponent implements OnInit {
}
}
+ //切换 选择考卷内容
+ togglePaperType (e) {
+ if (this.selectPaperType != e) {
+ this.selectPaperType = e
+ }
+ }
+
//获得单位预案设定
getUnitPlans(){
}
+ //交卷
+ uploadPaper () {
+ console.log('交卷')
+ }
+
}