|
@@ -9,10 +9,10 @@
|
|
|
<span class="name">组名:{{ acc.name }}</span>
|
|
|
<span class="newscore">组分:{{ acc.score || 0 }}分</span>
|
|
|
</div>
|
|
|
- <van-row v-for="(item, index) in acc.students" :key="index">
|
|
|
+ <van-row class="studentsList" v-for="(item, index) in acc.students" :key="index">
|
|
|
<template>
|
|
|
<p>
|
|
|
- <span class="name">名称:{{ item.stuname }}</span
|
|
|
+ <span class="name">姓名:{{ item.stuname }}</span
|
|
|
><span class="newscore"> 分数:{{ item.stores || 0 }}分</span>
|
|
|
</p>
|
|
|
</template>
|
|
@@ -60,7 +60,7 @@ p {
|
|
|
}
|
|
|
.name {
|
|
|
float: left;
|
|
|
- width: 100px;
|
|
|
+ width: 50%;
|
|
|
font-size: 15px;
|
|
|
}
|
|
|
|
|
@@ -73,14 +73,24 @@ p {
|
|
|
.score {
|
|
|
text-align: center;
|
|
|
font-size: 20px;
|
|
|
- margin: 0 0 15px 0;
|
|
|
- color: blue;
|
|
|
+ margin: 15px 0;
|
|
|
+ color: #2c69fe;
|
|
|
+ font-weight: bold;
|
|
|
}
|
|
|
.newscore {
|
|
|
- padding: 0 0 0 20px;
|
|
|
+ float: left;
|
|
|
+ width: 50%;
|
|
|
+ text-align: center;
|
|
|
font-size: 15px;
|
|
|
}
|
|
|
.attend p {
|
|
|
font-size: 15px;
|
|
|
}
|
|
|
+.studentsList {
|
|
|
+ padding: 10px 0;
|
|
|
+ border-bottom: 1px dashed #dcdcdc;
|
|
|
+}
|
|
|
+/deep/.van-collapse-item__content {
|
|
|
+ padding: 0 16px;
|
|
|
+}
|
|
|
</style>
|