From 5253510e94811f79843c4da399b1db4533227eb2 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期四, 11 六月 2026 21:33:04 +0800
Subject: [PATCH] fix: 生产驾驶舱类型默认季度

---
 src/views/reportAnalysis/productionAnalysis/components/right-top.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/reportAnalysis/productionAnalysis/components/right-top.vue b/src/views/reportAnalysis/productionAnalysis/components/right-top.vue
index 5ec836f..5ac7035 100644
--- a/src/views/reportAnalysis/productionAnalysis/components/right-top.vue
+++ b/src/views/reportAnalysis/productionAnalysis/components/right-top.vue
@@ -28,7 +28,7 @@
 import Echarts from '@/components/Echarts/echarts.vue'
 import DateTypeSwitch from './DateTypeSwitch.vue'
 
-const dateType = ref(1) // 1=鍛� 2=鏈� 3=瀛e害
+const dateType = ref(3) // 1=鍛� 2=鏈� 3=瀛e害
 
 const chartStyle = {
   width: '100%',
@@ -135,7 +135,7 @@
 }
 
 const fetchData = () => {
-  workOrderEfficiencyAnalysis({ dateType: dateType.value })
+  workOrderEfficiencyAnalysis({ type: dateType.value })
     .then((res) => {
       if (res.code !== 200 || !Array.isArray(res.data)) return
       const items = res.data

--
Gitblit v1.9.3