UPDATE: 优化;

This commit is contained in:
贾同学
2025-09-29 09:47:53 +08:00
parent 58bb25500e
commit a4a64ef0f9
4 changed files with 11 additions and 7 deletions

View File

@@ -365,7 +365,7 @@ const columns = reactive<ColumnProps<Plan.ReqPlan>[]>([
<el-progress
text-inside={true}
stroke-width={20}
percentage={(scope.row.progress ?? 0) * 100}
percentage={Number(((scope.row.progress ?? 0) * 100).toFixed(2))}
status="success"
/>
)