diff --git a/acupuncture-前台/src/views/screening/index.vue b/acupuncture-前台/src/views/screening/index.vue
index e11219c7..cdcc4a26 100644
--- a/acupuncture-前台/src/views/screening/index.vue
+++ b/acupuncture-前台/src/views/screening/index.vue
@@ -98,8 +98,14 @@
:data="listDat"
@selection-change="handleSelectionChange"
max-height="600"
+ row-key="id"
>
-
+
- {{ scope.row.createBy }}
{{
parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}")
}}
@@ -297,8 +302,6 @@ export default {
});
}
});
- console.log("this.listDat", this.listDat);
-
this.total = res.data.total;
this.loading = false;
});
@@ -329,7 +332,7 @@ export default {
let data = JSON.parse(JSON.stringify(this.queryParams));
data.param.idList = this.ids;
this.download1(
- "/screening/exportRzScreen",
+ "/screening/exportScreen",
{
...data,
},
diff --git a/acupuncture-前台/src/views/screening/qrCode.vue b/acupuncture-前台/src/views/screening/qrCode.vue
index 25af8eff..c26b07dd 100644
--- a/acupuncture-前台/src/views/screening/qrCode.vue
+++ b/acupuncture-前台/src/views/screening/qrCode.vue
@@ -342,13 +342,13 @@ export default {
// window.open(
// `${process.env.VUE_APP_API_QZURL}/acupuncture/profile/PatientTemplate.xlsx`
// );
- // this.download1(
- // "/patient/export",
- // {
- // ...this.queryParams.params,
- // },
- // `筛查二维码.xlsx`
- // );
+ this.download1(
+ "/wxQrCode/exportScreen",
+ {
+ ...this.queryParams.params,
+ },
+ `筛查二维码.xlsx`
+ );
},
},
};