Merge remote-tracking branch 'origin/develop' into guanyu
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
{{ statistics.drugClosedRate }}%
|
||||
</div>
|
||||
<el-progress
|
||||
:percentage="statistics.drugClosedRate || 0"
|
||||
:percentage="Number(statistics.drugClosedRate) || 0"
|
||||
:stroke-width="8"
|
||||
/>
|
||||
</div>
|
||||
@@ -37,7 +37,7 @@
|
||||
{{ statistics.labClosedRate }}%
|
||||
</div>
|
||||
<el-progress
|
||||
:percentage="statistics.labClosedRate || 0"
|
||||
:percentage="Number(statistics.labClosedRate) || 0"
|
||||
:stroke-width="8"
|
||||
/>
|
||||
</div>
|
||||
@@ -56,7 +56,7 @@
|
||||
{{ statistics.examClosedRate }}%
|
||||
</div>
|
||||
<el-progress
|
||||
:percentage="statistics.examClosedRate || 0"
|
||||
:percentage="Number(statistics.examClosedRate) || 0"
|
||||
:stroke-width="8"
|
||||
/>
|
||||
</div>
|
||||
@@ -75,7 +75,7 @@
|
||||
{{ statistics.treatmentClosedRate }}%
|
||||
</div>
|
||||
<el-progress
|
||||
:percentage="statistics.treatmentClosedRate || 0"
|
||||
:percentage="Number(statistics.treatmentClosedRate) || 0"
|
||||
:stroke-width="8"
|
||||
/>
|
||||
</div>
|
||||
@@ -156,7 +156,7 @@
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-progress
|
||||
:percentage="scope.row.closedRate || 0"
|
||||
:percentage="Number(scope.row.closedRate) || 0"
|
||||
:stroke-width="12"
|
||||
/>
|
||||
</template>
|
||||
@@ -386,4 +386,4 @@ onMounted(() => {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user