feiyu02
2025-03-28 aa75a9d46ee325f0a92e42f733aabb1f92103aeb
src/components/monitor/FactorLegend.vue
@@ -128,11 +128,12 @@
          ', ' +
          color[3] +
          ')';
        const { scale = 1, unit = '' } = factorUnit[name];
        legendList.push({
          color: bgColor,
          min: r[0],
          max: nextR ? nextR[0] : undefined,
          unit: factorUnit[name] ? factorUnit[name].unit : ''
          min: r[0] * scale,
          max: nextR ? nextR[0] * scale : undefined,
          unit: unit
        });
      }