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

feat(首页): 0

parent 29df5009
...@@ -129,6 +129,8 @@ ...@@ -129,6 +129,8 @@
<span <span
>已完成 :{{ >已完成 :{{
quantityStatisticsForm.completedTaskNumber quantityStatisticsForm.completedTaskNumber
? quantityStatisticsForm.completedTaskNumber
: 0
}}</span }}</span
> >
<div> <div>
...@@ -139,7 +141,11 @@ ...@@ -139,7 +141,11 @@
:show-text="false" :show-text="false"
></el-progress> ></el-progress>
<div style="margin-top: 10px; text-align: center"> <div style="margin-top: 10px; text-align: center">
{{ quantityStatisticsForm.completedTaskProportion }}% {{
quantityStatisticsForm.completedTaskProportion
? quantityStatisticsForm.completedTaskProportion
: 0
}}%
</div> </div>
</div> </div>
</div> </div>
...@@ -153,6 +159,8 @@ ...@@ -153,6 +159,8 @@
<span <span
>未完成 :{{ >未完成 :{{
quantityStatisticsForm.executeTasksNumber quantityStatisticsForm.executeTasksNumber
? quantityStatisticsForm.executeTasksNumber
: 0
}}</span }}</span
> >
<div> <div>
...@@ -163,7 +171,11 @@ ...@@ -163,7 +171,11 @@
:show-text="false" :show-text="false"
></el-progress> ></el-progress>
<div style="margin-top: 10px; text-align: center"> <div style="margin-top: 10px; text-align: center">
{{ quantityStatisticsForm.executeTaskProportion }}% {{
quantityStatisticsForm.executeTaskProportion
? quantityStatisticsForm.executeTaskProportion
: 0
}}%
</div> </div>
</div> </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