Merge remote-tracking branch 'origin/develop' into guanyu

This commit is contained in:
2026-06-18 22:49:30 +08:00

View File

@@ -18,7 +18,7 @@
{{ statistics.drugClosedRate }}% {{ statistics.drugClosedRate }}%
</div> </div>
<el-progress <el-progress
:percentage="statistics.drugClosedRate || 0" :percentage="Number(statistics.drugClosedRate) || 0"
:stroke-width="8" :stroke-width="8"
/> />
</div> </div>
@@ -37,7 +37,7 @@
{{ statistics.labClosedRate }}% {{ statistics.labClosedRate }}%
</div> </div>
<el-progress <el-progress
:percentage="statistics.labClosedRate || 0" :percentage="Number(statistics.labClosedRate) || 0"
:stroke-width="8" :stroke-width="8"
/> />
</div> </div>
@@ -56,7 +56,7 @@
{{ statistics.examClosedRate }}% {{ statistics.examClosedRate }}%
</div> </div>
<el-progress <el-progress
:percentage="statistics.examClosedRate || 0" :percentage="Number(statistics.examClosedRate) || 0"
:stroke-width="8" :stroke-width="8"
/> />
</div> </div>
@@ -75,7 +75,7 @@
{{ statistics.treatmentClosedRate }}% {{ statistics.treatmentClosedRate }}%
</div> </div>
<el-progress <el-progress
:percentage="statistics.treatmentClosedRate || 0" :percentage="Number(statistics.treatmentClosedRate) || 0"
:stroke-width="8" :stroke-width="8"
/> />
</div> </div>
@@ -156,7 +156,7 @@
> >
<template #default="scope"> <template #default="scope">
<el-progress <el-progress
:percentage="scope.row.closedRate || 0" :percentage="Number(scope.row.closedRate) || 0"
:stroke-width="12" :stroke-width="12"
/> />
</template> </template>
@@ -386,4 +386,4 @@ onMounted(() => {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
} }
</style> </style>