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('交卷') + } + }