From 2ab8acd4ca29e94eea562735d27600770879291c Mon Sep 17 00:00:00 2001 From: juzi <819872918@qq.com> Date: Thu, 13 Jun 2024 17:12:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/report/chipOEEBM/index.vue | 23 ++++-- src/views/report/chipOutputBM/index.vue | 5 -- src/views/report/chipPerCapitaBM/index.vue | 5 -- src/views/report/chipYieldBM/index.vue | 23 ++++-- src/views/report/components/bmLineBar.vue | 78 +++++++++++++------ .../report/conversionEfficiencyBM/index.vue | 23 ++++-- src/views/report/ftoOutputBM/index.vue | 57 ++++++++++++-- src/views/report/packageOEEBM/index.vue | 23 ++++-- src/views/report/scOutputBM/index.vue | 5 -- src/views/report/scPerCapitaBM/index.vue | 5 -- src/views/report/scYieldBM/index.vue | 25 +++--- src/views/report/turnoverRateBM/index.vue | 37 ++++++--- 12 files changed, 206 insertions(+), 103 deletions(-) diff --git a/src/views/report/chipOEEBM/index.vue b/src/views/report/chipOEEBM/index.vue index dd0528b..ff02fc7 100644 --- a/src/views/report/chipOEEBM/index.vue +++ b/src/views/report/chipOEEBM/index.vue @@ -114,15 +114,14 @@ export default { color: ["#FFCE6A", "#8EF0AB", "#288AFF"], xData: ["成都", "邯郸", "瑞昌"], yName: "单位/%", - yAxisLabel: { - formatter: function (value) { - return value + ".00%"; - }, - }, series: [ { name: "2024年4月目标值", - data: [85, 85, 85], + data: [ + { name: "%", value: 85 }, + { name: "%", value: 85 }, + { name: "%", value: 85 }, + ], type: "line", symbol: "circle", symbolSize: 6, @@ -136,7 +135,11 @@ export default { }, { name: "2023年4月", - data: [57.5, 21.66, 18.4], + data: [ + { name: "%", value: 57.5 }, + { name: "%", value: 21.66 }, + { name: "%", value: 18.4 }, + ], type: "bar", barWidth: 20, label: { @@ -150,7 +153,11 @@ export default { }, { name: "2024年4月", - data: [23.33, 7.02, 80.2], + data: [ + { name: "%", value: 23.33 }, + { name: "%", value: 7.02 }, + { name: "%", value: 80.2 }, + ], type: "bar", barWidth: 20, label: { diff --git a/src/views/report/chipOutputBM/index.vue b/src/views/report/chipOutputBM/index.vue index b2465af..5e2f021 100644 --- a/src/views/report/chipOutputBM/index.vue +++ b/src/views/report/chipOutputBM/index.vue @@ -114,11 +114,6 @@ export default { color: ["#FFCE6A", "#8EF0AB", "#288AFF"], xData: ["成都", "邯郸", "瑞昌"], yName: "单位/片", - yAxisLabel: { - formatter: function (value) { - return value; - }, - }, series: [ { name: "2024年4月目标值", diff --git a/src/views/report/chipPerCapitaBM/index.vue b/src/views/report/chipPerCapitaBM/index.vue index 635f9b2..dfd303c 100644 --- a/src/views/report/chipPerCapitaBM/index.vue +++ b/src/views/report/chipPerCapitaBM/index.vue @@ -114,11 +114,6 @@ export default { color: ["#FFCE6A", "#8EF0AB", "#288AFF"], xData: ["成都", "邯郸", "瑞昌"], yName: "单位/片", - yAxisLabel: { - formatter: function (value) { - return value; - }, - }, series: [ { name: "2024年4月目标值", diff --git a/src/views/report/chipYieldBM/index.vue b/src/views/report/chipYieldBM/index.vue index b00e918..ba9c677 100644 --- a/src/views/report/chipYieldBM/index.vue +++ b/src/views/report/chipYieldBM/index.vue @@ -114,15 +114,14 @@ export default { color: ["#FFCE6A", "#8EF0AB", "#288AFF"], xData: ["成都", "邯郸", "瑞昌"], yName: "单位/%", - yAxisLabel: { - formatter: function (value) { - return value + ".00%"; - }, - }, series: [ { name: "2024年4月目标值", - data: [85, 85, 85], + data: [ + { name: "%", value: 85 }, + { name: "%", value: 85 }, + { name: "%", value: 85 }, + ], type: "line", symbol: "circle", symbolSize: 6, @@ -136,7 +135,11 @@ export default { }, { name: "2023年4月", - data: [57.5, 21.66, 18.4], + data: [ + { name: "%", value: 57.5 }, + { name: "%", value: 21.66 }, + { name: "%", value: 18.4 }, + ], type: "bar", barWidth: 20, label: { @@ -150,7 +153,11 @@ export default { }, { name: "2024年4月", - data: [23.33, 7.02, 80.2], + data: [ + { name: "%", value: 23.33 }, + { name: "%", value: 7.02 }, + { name: "%", value: 80.2 }, + ], type: "bar", barWidth: 20, label: { diff --git a/src/views/report/components/bmLineBar.vue b/src/views/report/components/bmLineBar.vue index 31fe7ee..81e4354 100644 --- a/src/views/report/components/bmLineBar.vue +++ b/src/views/report/components/bmLineBar.vue @@ -1,30 +1,38 @@