diff --git a/acupuncture-前台/src/views/screening/qrCode.vue b/acupuncture-前台/src/views/screening/qrCode.vue index c26b07dd..112fc6d6 100644 --- a/acupuncture-前台/src/views/screening/qrCode.vue +++ b/acupuncture-前台/src/views/screening/qrCode.vue @@ -59,7 +59,7 @@ >删除 - + {}); }, /** 导出按钮操作 */ - handleExport() { + handleExport(row) { // window.open( // `${process.env.VUE_APP_API_QZURL}/acupuncture/profile/PatientTemplate.xlsx` // ); + let data = JSON.parse(JSON.stringify(this.queryParams)); + data.param.idList = row.id ? [row.id] : this.ids; this.download1( "/wxQrCode/exportScreen", { - ...this.queryParams.params, + ...data, }, `筛查二维码.xlsx` );