diff --git a/acupuncture-前台/src/views/screening/index.vue b/acupuncture-前台/src/views/screening/index.vue
index f781f8d2..eb38dc72 100644
--- a/acupuncture-前台/src/views/screening/index.vue
+++ b/acupuncture-前台/src/views/screening/index.vue
@@ -130,7 +130,7 @@
label="联系方式"
align="center"
prop="SCWJ-PHONE"
- min-width="100"
+ min-width="120"
/>
+
+
{
this.listDat = res.data.list;
this.listDat.forEach((item) => {
- if (item.recordList) {
- item.recordList.forEach((row) => {
- item[row.code] = row.answer;
+ if (item.detailList) {
+ item.detailList?.forEach((row) => {
+ item[row.questionCode] = row.answer;
});
}
});
+ console.log("this.listDat", this.listDat);
+
this.total = res.data.total;
this.loading = false;
});