From cc26ba01dd55866c8bef91f15668bff272ab970b Mon Sep 17 00:00:00 2001 From: yinq Date: Wed, 27 Mar 2024 16:49:52 +0800 Subject: [PATCH] =?UTF-8?q?update=20-=20=E7=94=9F=E4=BA=A7=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/report/WIPInquiryReport/index.vue | 48 +++++++++---------- .../productionExecutionReport/index.vue | 20 ++++---- src/views/report/repairRateReport/index.vue | 6 +-- 3 files changed, 37 insertions(+), 37 deletions(-) diff --git a/src/views/report/WIPInquiryReport/index.vue b/src/views/report/WIPInquiryReport/index.vue index 975965b..5a5eef0 100644 --- a/src/views/report/WIPInquiryReport/index.vue +++ b/src/views/report/WIPInquiryReport/index.vue @@ -66,14 +66,14 @@ type="info" >合计数量:{{ totalSum }} - - - - - - - - + 导出 + @@ -86,20 +86,20 @@ - - - - - + + + + + + + + + + + + + + @@ -271,9 +271,9 @@ export default { /** 导出按钮操作 */ handleExport() { - this.download('/report/productionReport/export', { + this.download('/report/productionReport/WIPInquiryReportList/export', { ...this.queryParams - }, `report_${new Date().getTime()}.xlsx`) + }, `在制品查询报表_${new Date().getTime()}.xlsx`) } } diff --git a/src/views/report/productionExecutionReport/index.vue b/src/views/report/productionExecutionReport/index.vue index c2946ac..6f30b3d 100644 --- a/src/views/report/productionExecutionReport/index.vue +++ b/src/views/report/productionExecutionReport/index.vue @@ -78,14 +78,14 @@ size="mini" >合计数量:{{ totalSum }} - - - - - - - - + 导出 + @@ -300,9 +300,9 @@ export default { /** 导出按钮操作 */ handleExport() { - this.download('/report/productionReport/export', { + this.download('/report/productionReport/productionExecutionReportList/export', { ...this.queryParams - }, `report_${new Date().getTime()}.xlsx`) + }, `生产执行报表_${new Date().getTime()}.xlsx`) } } diff --git a/src/views/report/repairRateReport/index.vue b/src/views/report/repairRateReport/index.vue index 60bf1cd..2a1455f 100644 --- a/src/views/report/repairRateReport/index.vue +++ b/src/views/report/repairRateReport/index.vue @@ -224,7 +224,7 @@ export default { }, legend: { itemWidth: 3 * vw, - data: ['不良数', '一次不合格率', '目标'], + data: ['不良数', '返修率(%)', '目标(%)'], textStyle: { color: "#000", margin: 15, @@ -309,7 +309,7 @@ export default { }, }, { - name: '返修率', + name: '返修率(%)', type: 'line', yAxisIndex: 1, data: e.map(val => parseFloat(val.REPAIR_RATE)), @@ -320,7 +320,7 @@ export default { }, }, { - name: '目标', + name: '目标(%)', type: 'line', yAxisIndex: 1, data: e.map(val => 10),