|
@@ -40,13 +40,13 @@
|
|
|
v-for="(item, index) in subject"
|
|
|
>
|
|
|
<div class="descriptionItemLabel">
|
|
|
- <overflow-text :text="item.key || ''"></overflow-text>
|
|
|
+ {{item.key}}
|
|
|
</div>
|
|
|
<div
|
|
|
class="descriptionItemConcat col-value"
|
|
|
@click="getSoundInfo(item.courseScheduleId)"
|
|
|
>
|
|
|
- <overflow-text :text="item.value + '人' || ''"></overflow-text>
|
|
|
+ {{item.value}}人
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -66,7 +66,7 @@
|
|
|
class="col-value"
|
|
|
@click="getGradeInfo(String(item.key))"
|
|
|
>
|
|
|
- {{ item.value }}人
|
|
|
+ {{ item.value||0 }}人
|
|
|
</div>
|
|
|
</descriptions-item>
|
|
|
</descriptions>
|
|
@@ -78,13 +78,13 @@
|
|
|
v-for="(item, index) in grade"
|
|
|
>
|
|
|
<div class="descriptionItemLabel">
|
|
|
- <overflow-text :text="gradeMap[item.key] || ''"></overflow-text>
|
|
|
+ {{gradeMap[item.key]}}
|
|
|
</div>
|
|
|
<div
|
|
|
class="descriptionItemConcat col-value"
|
|
|
@click="getGradeInfo(String(item.key))"
|
|
|
>
|
|
|
- <overflow-text :text="item.value + '人' || ''"></overflow-text>
|
|
|
+ {{item.value||0}}人
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|