|
@@ -3,10 +3,10 @@
|
|
|
<div class="statistics-all flex-row">
|
|
|
<div class="statistics-progress">
|
|
|
<div class="statistics-progress-num">
|
|
|
- <p>{{taskProgress + '%'}}</p>
|
|
|
+ <p>{{taskProgress?taskProgress:0 + '%'}}</p>
|
|
|
<p>完成情况</p>
|
|
|
</div>
|
|
|
- <el-progress :width="90" type="circle" :percentage="taskProgress" :show-text="false"></el-progress>
|
|
|
+ <el-progress :width="90" type="circle" :percentage="taskProgress?taskProgress:0" :show-text="false"></el-progress>
|
|
|
</div>
|
|
|
<div class="statistics-all-box flex-col">
|
|
|
<span>总任务:<b>{{allCount}}</b></span>
|