-- 学员数量

This commit is contained in:
yuping
2022-12-22 17:31:27 +08:00
parent e1e4a005ce
commit 13e27ae3ca

View File

@@ -425,19 +425,19 @@
</div>
<div class="progress">
<div class="progresstext">
{{ item.complete ? item.complete : 0 }}/{{
item.total ? item.total : 0
{{ item.finishStuNum }}/{{
item.totalStuNum
}}
</div>
<div style="display: flex">
<a-progress
:showInfo="false"
:percent="item.percent"
:percent="parseInt(item.finishStuNum / item.totalStuNum * 100)"
strokeColor="#FFC067"
trailColor="rgba(253, 209, 98, 0.2)"
/>
<span class="progresstext" style="margin-left: 10px"
>{{ item.percent ? item.percent : 0 }}%</span
>{{ parseInt(item.finishStuNum / item.totalStuNum * 100) }}%</span
>
</div>
</div>