This commit is contained in:
ljx
2025-09-12 22:20:33 +08:00
parent e1360a3f16
commit a71d861227
4 changed files with 7 additions and 5 deletions

View File

@ -155,7 +155,7 @@ const initPieChart = () => {
const getOutputData = async () => {
const res = await outpuProgress();
if (res.code == 200) {
designAreaData.value = res.data.map((item: any) => Number(item.plannedCapacity * item.progressPercentage));
designAreaData.value = res.data.map((item: any) => Number((item.plannedCapacity * item.progressPercentage) / 100));
transferAreaData.value = res.data.map((item: any) => Number(item.plannedCapacity));
barNames.value = res.data.map((item: any) => item.projectName);
initLineChart();