|
@@ -11,18 +11,18 @@
|
|
|
<img :src="appStore.globalConfig.fileUrlPrefix + info.photoPath" />
|
|
|
</div>
|
|
|
<div class="media-right info-rows">
|
|
|
- <div><span class="label">姓名:</span>{{ info.studentName }}</div>
|
|
|
- <div><span class="label">性别:</span>{{ info.gender }}</div>
|
|
|
- <div>
|
|
|
- <span class="label">身份证号:</span>{{ info.identityNumber }}
|
|
|
+ <div class="base-info">
|
|
|
+ <div><span class="label">姓名:</span>{{ info.studentName }}</div>
|
|
|
+ <div><span class="label">性别:</span>{{ info.gender }}</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <span class="label">考点名称:</span>{{ info.examSiteName }}
|
|
|
+ <span class="label">身份证号:</span>{{ info.identityNumber }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="py-20 d-flex flex-v justify-content-between info-rows">
|
|
|
- <div>
|
|
|
+ <div class="pt-14 pb-20 d-flex flex-v justify-content-between info-rows">
|
|
|
+ <div><span class="label">考点名称:</span>{{ info.examSiteName }}</div>
|
|
|
+ <div class="mt-12">
|
|
|
<span class="label">考试时间:</span>
|
|
|
{{ $filters.dateFormat(info.timePeriodStart, "yyyy年MM月dd日") }}
|
|
|
(星期{{ getWeek(info.timePeriodStart) }})
|
|
@@ -187,14 +187,27 @@ function getWeek(time) {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
+ justify-content: space-around;
|
|
|
+ padding: 8px 0;
|
|
|
+ .base-info {
|
|
|
+ & > div {
|
|
|
+ width: 50%;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
+ &:after {
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ clear: both;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.info-rows {
|
|
|
color: #262626;
|
|
|
.label {
|
|
|
color: #8c8c8c;
|
|
|
- margin-right: 6px;
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 3px;
|
|
|
}
|
|
|
}
|
|
|
}
|