@@ -306,6 +306,7 @@ export const PRINT_TASK_STATUS = {
};
// pdf文件类型
export const PRINT_PDF_TYPE = {
+ MERGE_PDF: "合并文件",
PAPER: "试卷",
CARD_A3: "题卡",
PACKAGE: "卷袋贴",
@@ -773,6 +773,10 @@ export default {
this.actionPdf(data[0]);
} else {
this.pdfList = data;
+ if (actionType === "build")
+ this.pdfList = this.pdfList.filter(
+ (item) => item.type !== "MERGE_PDF"
+ );
this.padViewDialogVisible = true;
}
},