|
@@ -148,8 +148,12 @@
|
|
|
<div>请在备选答案中选择你认为正确的答案!</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
- <div @click="beforeTopic" class="right-button1">上一题</div>
|
|
|
- <div @click="nextTopic" class="right-button1">下一题</div>
|
|
|
+ <div @click="beforeTopic" class="right-button1" :class="{
|
|
|
+ button1_disabled:listIndex==0
|
|
|
+ }">上一题</div>
|
|
|
+ <div @click="nextTopic" class="right-button1" :class="{
|
|
|
+ button1_disabled:listIndex==(list.length-1)
|
|
|
+ }">下一题</div>
|
|
|
<div @click="submitScore" class="right-button2">交卷</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -755,23 +759,28 @@ export default defineComponent({
|
|
|
.right-button1 {
|
|
|
width: 58px;
|
|
|
height: 28px;
|
|
|
- background: #01c18d;
|
|
|
+ background: #FFFFFB;
|
|
|
opacity: 1;
|
|
|
- border-radius: 14px;
|
|
|
+
|
|
|
font-size: 12px;
|
|
|
- color: #fff;
|
|
|
+ color: #3D3C38;
|
|
|
line-height: 28px;
|
|
|
text-align: center;
|
|
|
margin-left: 16px;
|
|
|
}
|
|
|
+ .button1_disabled{
|
|
|
+ background-color: #F9FAF5;
|
|
|
+ color: #979893;
|
|
|
+
|
|
|
+ }
|
|
|
.right-button2 {
|
|
|
width: 58px;
|
|
|
height: 28px;
|
|
|
- background: #498ef5;
|
|
|
+ background: #FFFFFB;
|
|
|
opacity: 1;
|
|
|
- border-radius: 14px;
|
|
|
+
|
|
|
font-size: 12px;
|
|
|
- color: #fff;
|
|
|
+
|
|
|
line-height: 28px;
|
|
|
text-align: center;
|
|
|
margin-left: 16px;
|
|
@@ -928,7 +937,7 @@ export default defineComponent({
|
|
|
}
|
|
|
.answer-img {
|
|
|
|
|
|
- height: 63px;
|
|
|
+ height: 90px;
|
|
|
}
|
|
|
.topic {
|
|
|
border: 1px solid #b8c0cc;
|