src/components/monitor/DataSummary.vue
@@ -70,12 +70,14 @@ total += v.factorData; count++; }); let _avg = count == 0 ? 0 : Math.round((total / count) * 100) / 100; if (isNaN(_avg)) _avg = '-'; list.push({ factorId: f.factorId, factor: factorName[f.factorName], min, max, avg: count == 0 ? 0 : Math.round((total / count) * 100) / 100 avg: _avg }); } }