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`)
+ },
}
};