From b5ad3b330fbd73723fd4a002ce922003b22c082d Mon Sep 17 00:00:00 2001 From: zhaoxiaolin Date: Tue, 27 Aug 2024 17:25:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A8=E9=87=8F=E6=8A=A5=E8=A1=A8=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E6=98=8E=E7=BB=86=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/quality/llAnalysisReport/index.vue | 8 ++++++++ src/views/quality/qcTableCheckDevelop/index.vue | 7 +++++++ src/views/quality/sjAnalysisReport/index.vue | 7 +++++++ 3 files changed, 22 insertions(+) diff --git a/src/views/quality/llAnalysisReport/index.vue b/src/views/quality/llAnalysisReport/index.vue index 6f2167ae..6243ae28 100644 --- a/src/views/quality/llAnalysisReport/index.vue +++ b/src/views/quality/llAnalysisReport/index.vue @@ -43,7 +43,9 @@ 搜索 重置 + 导出明细 +
@@ -490,6 +492,12 @@ export default { this.single = selection.length!==1 this.multiple = !selection.length }, + /** 导出按钮操作 */ + handleExport() { + this.download('quality/staticTable/exportIncomeDetail', { + ...this.queryParams + }, `incomeNoOkList_${new Date().getTime()}.xlsx`) + }, } }; diff --git a/src/views/quality/qcTableCheckDevelop/index.vue b/src/views/quality/qcTableCheckDevelop/index.vue index 7524f5a5..f09efdc0 100644 --- a/src/views/quality/qcTableCheckDevelop/index.vue +++ b/src/views/quality/qcTableCheckDevelop/index.vue @@ -43,6 +43,7 @@ 搜索 重置 + 导出明细 @@ -490,6 +491,12 @@ export default { this.single = selection.length!==1 this.multiple = !selection.length }, + /** 导出按钮操作 */ + handleExport() { + this.download('quality/staticTable/exportXJDetail', { + ...this.queryParams + }, `XJList_${new Date().getTime()}.xlsx`) + }, } }; diff --git a/src/views/quality/sjAnalysisReport/index.vue b/src/views/quality/sjAnalysisReport/index.vue index 4a76bd95..559d5294 100644 --- a/src/views/quality/sjAnalysisReport/index.vue +++ b/src/views/quality/sjAnalysisReport/index.vue @@ -43,6 +43,7 @@ 搜索 重置 + 导出明细 @@ -488,6 +489,12 @@ export default { this.single = selection.length!==1 this.multiple = !selection.length }, + /** 导出按钮操作 */ + handleExport() { + this.download('quality/staticTable/exportIncomeDetail', { + ...this.queryParams + }, `scNoOkList_${new Date().getTime()}.xlsx`) + }, } };