mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 11:26:45 +08:00
--fix bug
This commit is contained in:
@@ -193,7 +193,7 @@
|
|||||||
<a-progress
|
<a-progress
|
||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent=" chapterOverviewList[choosedStageIndex]?.completeCourseRatio || 0 "
|
:percent=" fixDoublePer(chapterOverviewList[choosedStageIndex]?.completeCourseRatio || 0) "
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
<div class="protext">课程完成率</div>
|
<div class="protext">课程完成率</div>
|
||||||
@@ -202,7 +202,7 @@
|
|||||||
<a-progress
|
<a-progress
|
||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent="chapterOverviewList[choosedStageIndex]?.completeExamRatio || 0"
|
:percent="fixDoublePer(chapterOverviewList[choosedStageIndex]?.completeExamRatio || 0)"
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
<div class="protext">考试通过率</div>
|
<div class="protext">考试通过率</div>
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
<a-progress
|
<a-progress
|
||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent="chapterOverviewList[choosedStageIndex]?.completeRatio || 0"
|
:percent="fixDoublePer(chapterOverviewList[choosedStageIndex]?.completeRatio || 0)"
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
<div class="protext">作业完成率</div>
|
<div class="protext">作业完成率</div>
|
||||||
|
|||||||
@@ -390,7 +390,7 @@
|
|||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent="
|
:percent="
|
||||||
stageOverviewList[choosedStageIndex]?.completeCourseRatio || 0
|
fixDoublePer( stageOverviewList[choosedStageIndex]?.completeCourseRatio || 0)
|
||||||
"
|
"
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
@@ -401,7 +401,7 @@
|
|||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent="
|
:percent="
|
||||||
stageOverviewList[choosedStageIndex]?.completeExamRatio || 0
|
fixDoublePer(stageOverviewList[choosedStageIndex]?.completeExamRatio || 0)
|
||||||
"
|
"
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
@@ -411,7 +411,7 @@
|
|||||||
<a-progress
|
<a-progress
|
||||||
type="dashboard"
|
type="dashboard"
|
||||||
gapDegree="0"
|
gapDegree="0"
|
||||||
:percent="stageOverviewList[choosedStageIndex]?.completeRatio || 0"
|
:percent="fixDoublePer(stageOverviewList[choosedStageIndex]?.completeRatio || 0)"
|
||||||
:width="140"
|
:width="140"
|
||||||
/>
|
/>
|
||||||
<div class="protext">作业完成率</div>
|
<div class="protext">作业完成率</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user