|
@@ -8,11 +8,11 @@
|
|
|
@load="onLoad()"
|
|
|
>
|
|
|
<van-cell
|
|
|
+ class="vanCell"
|
|
|
v-for="(item, index) in specialAnswerList"
|
|
|
:key="index"
|
|
|
>
|
|
|
<div slot="default" class="contentItemDiv">
|
|
|
- <div>
|
|
|
<div class="contentItemTitle">
|
|
|
{{ item.name }}
|
|
|
</div>
|
|
@@ -26,7 +26,6 @@
|
|
|
<span class="startText">开始答题</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
</van-cell>
|
|
|
</van-list>
|
|
@@ -105,8 +104,14 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.contentBody {
|
|
|
- background-color: #fff;
|
|
|
- .contentItemDiv {
|
|
|
+ .vanCell{
|
|
|
+ background-color: #F0F0F0;
|
|
|
+ .contentItemDiv {
|
|
|
+ box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ height: 80px;
|
|
|
+ border-radius: 2px;
|
|
|
+ padding: 10px;
|
|
|
.contentItemTitle {
|
|
|
font-size: 0.65rem;
|
|
|
font-weight: bold;
|
|
@@ -124,13 +129,14 @@ export default {
|
|
|
justify-content: flex-end;
|
|
|
.startButtonBox{
|
|
|
border-radius: 2px;
|
|
|
- background-color: #696969;
|
|
|
+ background-color: #0088E9;
|
|
|
}
|
|
|
.startText{
|
|
|
margin: 10px 5px;
|
|
|
color: #fff;
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|