From 6a9a007aa17377879d3742a182e4ea99e43e723b Mon Sep 17 00:00:00 2001 From: lrw <319150264@qq.com> Date: Mon, 17 Apr 2023 10:47:03 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=8F=E8=AE=BF=E5=AE=A1=E6=A0=B8=E8=B4=A8?= =?UTF-8?q?=E6=8E=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/followup.js | 2 +- .../CustomForm/FormItemText.vue | 3 +- src/views/audit-qualitycontrol/index.vue | 3 + .../followupentry/components/publicDialog.vue | 15 +- src/views/followupentry/followaudit.vue | 726 +++++++++++------- .../followupquery/components/FollowReview.vue | 84 +- .../followupquery/components/MyCustomForm.vue | 20 +- src/views/screening/components/FormTab.vue | 1 + 8 files changed, 537 insertions(+), 317 deletions(-) diff --git a/src/api/followup.js b/src/api/followup.js index 3bd575a..38e0ee4 100644 --- a/src/api/followup.js +++ b/src/api/followup.js @@ -47,7 +47,7 @@ export function getFollowUnCheckDetail(id) { //随访病例审核 export function putFollowCheck(data = {}) { return request({ - url: "/disease-data/dataCheck/follow/check", + url: "/disease-data/dataCheck/follow/uncheck", method: "put", data, }) diff --git a/src/components/FormComponents/CustomForm/FormItemText.vue b/src/components/FormComponents/CustomForm/FormItemText.vue index 8fec2ef..243d004 100644 --- a/src/components/FormComponents/CustomForm/FormItemText.vue +++ b/src/components/FormComponents/CustomForm/FormItemText.vue @@ -76,7 +76,8 @@ export default { }, methods: { handleUnionName(v) { - return this.unionLists.filter((e) => e.id == v)[0].unionName + const union = this.unionList.find((e) => e.id == v) || {} + return union.unionName || "" }, }, filters: { diff --git a/src/views/audit-qualitycontrol/index.vue b/src/views/audit-qualitycontrol/index.vue index 34f8605..ada852e 100644 --- a/src/views/audit-qualitycontrol/index.vue +++ b/src/views/audit-qualitycontrol/index.vue @@ -227,8 +227,11 @@ export default { this.$router.push({ path: "/followaudit", query: { + id: data["id"], unionId: data["unionId"], unionName: data["unionName"], + patientId: data.patientId, + checkStatus: data["checkStatus"], }, }) } else { diff --git a/src/views/followupentry/components/publicDialog.vue b/src/views/followupentry/components/publicDialog.vue index e203c3d..2547937 100644 --- a/src/views/followupentry/components/publicDialog.vue +++ b/src/views/followupentry/components/publicDialog.vue @@ -1,6 +1,12 @@