diff --git a/src/views/quality/llAnalysisReport/index.vue b/src/views/quality/llAnalysisReport/index.vue index 6f2167a..6243ae2 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 7524f5a..f09efdc 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 4a76bd9..559d529 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`) + }, } };