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),