From 4334e4d5f680b4375d7af4ba9e4d8c8baef7266b Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 14 九月 2026 11:02:29 +0800
Subject: [PATCH] feat(production): 添加工序颜色配置和显示功能

---
 src/views/reportAnalysis/productionAnalysis/components/left-top.vue |   19 +++++++++++++------
 1 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/src/views/reportAnalysis/productionAnalysis/components/left-top.vue b/src/views/reportAnalysis/productionAnalysis/components/left-top.vue
index c4532ad..1f7994b 100644
--- a/src/views/reportAnalysis/productionAnalysis/components/left-top.vue
+++ b/src/views/reportAnalysis/productionAnalysis/components/left-top.vue
@@ -60,7 +60,7 @@
     icon: 'circle',
     textStyle: {
       fontSize: 18,
-      color: pieColors[idx % pieColors.length],
+      color: d.color || pieColors[idx % pieColors.length],
     },
   }))
 
@@ -154,11 +154,18 @@
     .then((res) => {
       if (res.code === 200 && Array.isArray(res.data)) {
         const items = res.data
-        pieDatas.value = items.map((item) => ({
-          name: item.name,
-          value: parseFloat(item.value) || 0,
-          rate: item.rate,
-        }))
+        pieDatas.value = items.map((item) => {
+          const point = {
+            name: item.name,
+            value: parseFloat(item.value) || 0,
+            rate: item.rate,
+          }
+          if (item.color) {
+            point.color = item.color
+            point.itemStyle = { color: item.color }
+          }
+          return point
+        })
       }
     })
     .catch((err) => {

--
Gitblit v1.9.3