liding
2026-06-17 44cd199a79b5d9e7cc0900166340e3c4991c0fcf
src/views/productionManagement/productionOrder/index.vue
@@ -487,7 +487,7 @@
    if (!Number.isFinite(n)) return 0;
    if (n <= 0) return 0;
    if (n >= 100) return 100;
    return Math.round(n);
    return parseFloat(n.toFixed(2));
  };
  // 30/50/80/100 分段颜色:红/橙/蓝/绿
@@ -676,7 +676,6 @@
            try {
              const workOrderRes = await productWorkOrderPage({
                npsNo: item.npsNo,
                isProduction: 1,
                size: 100,
              });
              const workOrders = workOrderRes.data.records || [];