Commit 56adb865 authored by 高滢's avatar 高滢

feat(首页): 0

parent 29df5009
......@@ -129,6 +129,8 @@
<span
>已完成 :{{
quantityStatisticsForm.completedTaskNumber
? quantityStatisticsForm.completedTaskNumber
: 0
}}</span
>
<div>
......@@ -139,7 +141,11 @@
:show-text="false"
></el-progress>
<div style="margin-top: 10px; text-align: center">
{{ quantityStatisticsForm.completedTaskProportion }}%
{{
quantityStatisticsForm.completedTaskProportion
? quantityStatisticsForm.completedTaskProportion
: 0
}}%
</div>
</div>
</div>
......@@ -153,6 +159,8 @@
<span
>未完成 :{{
quantityStatisticsForm.executeTasksNumber
? quantityStatisticsForm.executeTasksNumber
: 0
}}</span
>
<div>
......@@ -163,7 +171,11 @@
:show-text="false"
></el-progress>
<div style="margin-top: 10px; text-align: center">
{{ quantityStatisticsForm.executeTaskProportion }}%
{{
quantityStatisticsForm.executeTaskProportion
? quantityStatisticsForm.executeTaskProportion
: 0
}}%
</div>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment