From 7431d0171c598eeed30e0b88f0c8ee036382968d Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期五, 06 二月 2026 09:36:54 +0800
Subject: [PATCH] fix: 优化财务大屏样式

---
 src/views/reportAnalysis/productionAnalysis/components/right-bottom.vue |  131 ++++++++++++++++++++++++++++++++-----------
 1 files changed, 97 insertions(+), 34 deletions(-)

diff --git a/src/views/reportAnalysis/productionAnalysis/components/right-bottom.vue b/src/views/reportAnalysis/productionAnalysis/components/right-bottom.vue
index b8a289f..28de03b 100644
--- a/src/views/reportAnalysis/productionAnalysis/components/right-bottom.vue
+++ b/src/views/reportAnalysis/productionAnalysis/components/right-bottom.vue
@@ -5,9 +5,18 @@
       <div class="filters-row">
         <DateTypeSwitch v-model="dateType" @change="handleDateTypeChange" />
       </div>
-      <Echarts ref="chart" :chartStyle="chartStyle" :grid="grid" :legend="barLegend" :series="chartSeries"
-        :tooltip="tooltip" :xAxis="xAxis1" :yAxis="yAxis1"
-        :options="{ backgroundColor: 'transparent', textStyle: { color: '#B8C8E0' } }" style="height: 320px" />
+      <Echarts
+        ref="chart"
+        :chartStyle="chartStyle"
+        :grid="grid"
+        :legend="barLegend"
+        :series="chartSeries"
+        :tooltip="tooltip"
+        :xAxis="xAxis1"
+        :yAxis="yAxis1"
+        :options="{ backgroundColor: 'transparent', textStyle: { color: '#B8C8E0' } }"
+        style="height: 260px"
+      />
     </div>
   </div>
 </template>
@@ -21,62 +30,110 @@
 
 const dateType = ref(1)
 
-const chartStyle = { width: '100%', height: '100%' }
-const grid = { left: '3%', right: '4%', bottom: '3%', top: '15%', containLabel: true }
+const chartStyle = {
+  width: '100%',
+  height: '140%',
+}
+
+const grid = { left: '3%', right: '4%', bottom: '3%', top: '10%', containLabel: true }
 
 const barLegend = {
   show: true,
   textStyle: { color: '#B8C8E0' },
   data: ['瀹屾垚鏁伴噺', '宸ヨ祫閲戦', '鍚堟牸鐜�'],
-  top: '0%'
 }
 
-// 鍒濆鍖� series 缁撴瀯
 const chartSeries = ref([
   {
     name: '瀹屾垚鏁伴噺',
     type: 'bar',
-    barWidth: 15,
-    itemStyle: { color: '#4EE4FF' },
-    data: []
+    barWidth: 20,
+    barGap: '40%',
+    emphasis: { focus: 'series' },
+    itemStyle: {
+      color: {
+        type: 'linear',
+        x: 0,
+        y: 0,
+        x2: 0,
+        y2: 1,
+        colorStops: [
+          { offset: 1, color: 'rgba(0, 164, 237, 0)' },
+          { offset: 0, color: 'rgba(78, 228, 255, 1)' },
+        ],
+      },
+    },
+    data: [],
   },
   {
     name: '宸ヨ祫閲戦',
     type: 'bar',
-    barWidth: 15,
-    itemStyle: { color: '#00A4ED' },
-    data: []
+    barGap: '40%',
+    barWidth: 20,
+    emphasis: { focus: 'series' },
+    itemStyle: {
+      color: {
+        type: 'linear',
+        x: 0,
+        y: 0,
+        x2: 0,
+        y2: 1,
+        colorStops: [
+          { offset: 1, color: 'rgba(83, 126, 245, 0.19)' },
+          { offset: 0, color: 'rgba(144, 97, 248, 1)' },
+        ],
+      },
+    },
+    data: [],
   },
   {
     name: '鍚堟牸鐜�',
     type: 'line',
     yAxisIndex: 1,
-    smooth: true,
-    itemStyle: { color: '#FFD339' },
-    data: []
-  }
+    showSymbol: true,
+    symbol: 'circle',
+    symbolSize: 8,
+    lineStyle: { color: 'rgba(90, 216, 166, 1)', width: 2 },
+    itemStyle: { color: 'rgba(90, 216, 166, 1)' },
+    data: [],
+    emphasis: { focus: 'series' },
+  },
 ])
 
 const xAxis1 = ref([
-  { type: 'category', axisTick: { show: false }, axisLabel: { color: '#B8C8E0' }, data: [] }
+  { type: 'category', axisTick: { show: false }, axisLabel: { color: '#B8C8E0' }, data: [] },
 ])
 
 const yAxis1 = [
-  { type: 'value', name: '鏁伴噺/閲戦', axisLabel: { color: '#B8C8E0' }, splitLine: { lineStyle: { color: 'rgba(184, 200, 224, 0.2)' } } },
-  { type: 'value', name: '鍚堟牸鐜�(%)', max: 100, axisLabel: { formatter: '{value}%', color: '#B8C8E0' }, splitLine: { show: false } }
+  {
+    type: 'value',
+    name: '鏁伴噺/閲戦',
+    axisLabel: { color: '#B8C8E0' },
+    nameTextStyle: { color: '#B8C8E0' },
+    // splitLine: { lineStyle: { color: 'rgba(184, 200, 224, 0.2)' } },
+  },
+  {
+    type: 'value',
+    name: '鍚堟牸鐜�(%)',
+    min: 0,
+    max: 100,
+    axisLabel: { color: '#B8C8E0', formatter: '{value}%' },
+    nameTextStyle: { color: '#B8C8E0' },
+    splitLine: { lineStyle: { color: 'rgba(184, 200, 224, 0.2)' } },
+  },
 ]
 
 const tooltip = {
   trigger: 'axis',
-  axisPointer: { type: 'shadow' },
+  axisPointer: { type: 'cross' },
   formatter(params) {
-    let res = params[0].axisValueLabel + '<br/>'
-    params.forEach(item => {
+    let result = params[0].axisValueLabel + '<br/>'
+    params.forEach((item) => {
       const unit = item.seriesName === '鍚堟牸鐜�' ? '%' : (item.seriesName === '宸ヨ祫閲戦' ? ' 鍏�' : ' 涓�')
-      res += `${item.marker} ${item.seriesName}: ${item.value}${unit}<br/>`
+      result += `<div>${item.marker} ${item.seriesName}: ${item.value}${unit}</div>`
     })
-    return res
-  }
+    return result
+  },
 }
 
 const handleDateTypeChange = () => {
@@ -93,8 +150,6 @@
         chartSeries.value[0].data = items.map(item => Number(item.numberOfCompleted) || 0)
         chartSeries.value[1].data = items.map(item => Number(item.amount) || 0)
         chartSeries.value[2].data = items.map(item => Number(item.passRate) || 0)
-
-        console.log('鏇存柊鍚庣殑鏁版嵁:', chartSeries.value)
       }
     })
     .catch((err) => {
@@ -108,17 +163,25 @@
 </script>
 
 <style scoped>
+.main-panel {
+  display: flex;
+  flex-direction: column;
+  gap: 20px;
+}
+
+.filters-row {
+  display: flex;
+  justify-content: flex-end;
+  align-items: center;
+  gap: 12px;
+  margin-bottom: 10px;
+}
+
 .panel-item-customers {
   border: 1px solid #1a58b0;
   padding: 18px;
   width: 100%;
   height: 449px;
   box-sizing: border-box;
-}
-
-.filters-row {
-  display: flex;
-  justify-content: flex-end;
-  margin-bottom: 10px;
 }
 </style>
\ No newline at end of file

--
Gitblit v1.9.3