|
@@ -5,6 +5,7 @@ import {
|
|
|
moduleScreeningData,
|
|
|
productAcceptanceData,
|
|
|
} from "@/api/statistic/reportMockData";
|
|
|
+import {getQualityTableData} from "@/api/statistic/reportData";
|
|
|
|
|
|
const detail = ref<any>({});
|
|
|
|
|
@@ -13,12 +14,14 @@ const dialogVisible = ref(false);
|
|
|
const openPrintDialog = (row) => {
|
|
|
dialogVisible.value = true;
|
|
|
console.info("openPrintDialog", row);
|
|
|
+ getQualityTableData(row).then(
|
|
|
+
|
|
|
+ )
|
|
|
// 在这里调接口
|
|
|
detail.value = row;
|
|
|
};
|
|
|
|
|
|
const handleClose = (done: () => void) => {};
|
|
|
-
|
|
|
defineExpose({
|
|
|
openPrintDialog: openPrintDialog,
|
|
|
});
|