|
@@ -4,7 +4,7 @@
|
|
|
<transition :enter-active-class="proxy?.animate.dialog.enter" :leave-active-class="proxy?.animate.dialog.leave">
|
|
|
<div class="time" v-show="[42].includes(examState)">{{
|
|
|
countdownNumFormat
|
|
|
- }}</div>
|
|
|
+ }}</div>
|
|
|
</transition>
|
|
|
<div class="main">
|
|
|
<div class="main-left">
|
|
@@ -63,8 +63,8 @@
|
|
|
<div class="btn startBtn" @click="getStartOneTest" v-if="examState == 43">开始测试</div>
|
|
|
</template>
|
|
|
<template v-else> </template>
|
|
|
- <div class="btn" @click="getRetestFace" v-if="examState == 43">重新识别</div>
|
|
|
<div class="btn" @click="getAgain" v-if="examState == 42 || showTestAgain">再测一次</div>
|
|
|
+ <div class="btn" @click="getRetestFace" v-if="examState == 43">重新识别</div>
|
|
|
</div>
|
|
|
<ChooseStudent ref="chooseStudentRef" @returnData="returnStudent" />
|
|
|
</div>
|
|
@@ -600,14 +600,34 @@ $waiPadding: 6.51rem;
|
|
|
|
|
|
.trackItem {
|
|
|
width: 100%;
|
|
|
- overflow-y: hidden;
|
|
|
+ overflow-y: scroll;
|
|
|
padding: 0px 10px;
|
|
|
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ width: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ border-width: 2px;
|
|
|
+ border-radius: 4px;
|
|
|
+ border-style: dashed;
|
|
|
+ border-color: transparent;
|
|
|
+ background-color: rgba(26, 62, 78, 0.9);
|
|
|
+ background-clip: padding-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-button:hover {
|
|
|
+ border-radius: 6px;
|
|
|
+ background: rgba(26, 62, 78, 1);
|
|
|
+ }
|
|
|
+
|
|
|
.li {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
border-bottom: 1px solid #475557;
|
|
|
+ height: calc(100%/8);
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
|
.track {
|
|
|
color: #13ED84;
|