|
@@ -2,8 +2,8 @@
|
|
|
|
|
|
<div class="container" v-if="afterExamRemark">
|
|
|
<div class="instructions">
|
|
|
- <div><img :src="this.user.photoPath" alt=""></div>
|
|
|
<h1 class="">考试已结束</h1>
|
|
|
+ <div><img class="user-avatar" :src="user.photoPath" alt="无底照" /></div>
|
|
|
<div v-if="showObjectScore && !examResult.isWarn">客观分: {{examResult.objectiveScore}}</div>
|
|
|
<div v-if="examResult.isWarn">成绩待审核</div>
|
|
|
<h1 class="">考后说明: </h1>
|
|
@@ -79,10 +79,17 @@ export default {
|
|
|
|
|
|
.instructions {
|
|
|
display: grid;
|
|
|
- grid-template-rows: 40px minmax(200px, auto) 1fr;
|
|
|
+ grid-template-rows: 40px 300px 100px 30px minmax(200px, auto) 1fr;
|
|
|
padding: 40px 20px;
|
|
|
}
|
|
|
|
|
|
+.user-avatar {
|
|
|
+ display: inline-block;
|
|
|
+ width: 280px;
|
|
|
+ height: 280px;
|
|
|
+ object-fit: contain;
|
|
|
+}
|
|
|
+
|
|
|
.exam-detail {
|
|
|
padding: 40px 20px;
|
|
|
background-color: #f5f5f5;
|