diff --git a/src/views/task/statistics.vue b/src/views/task/statistics.vue index 8c0d646..6b9c61f 100644 --- a/src/views/task/statistics.vue +++ b/src/views/task/statistics.vue @@ -216,7 +216,7 @@ getTaskDataTypeAnalysis({taskId:value.id,startDate:value.startTime,endDate:value.endTime}).then((res) => { if (res.success) { res.result.typeName.forEach(row => { - this.totalNumberCataloguesData.push({ value: parseInt(res.result.numRowMap[row]), name: row }) + this.totalNumberCataloguesData.push({ value: parseFloat(res.result.numRowMap[row]), name: row }) }) this.getcleaningVariance(); } else {