diff --git a/src/api/followup.js b/src/api/followup.js index 3bd575a802f1b0c4400be17d22cdd216b571caf8..38e0ee4a5246773931f1fe5274598865a4f75643 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 8fec2effb645e6bdc270e28f67cddebbb2469f7d..243d0040d03d2a370c67f2431b279b417083e85c 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 34f86057466be71832a588f9cdd496e5403071bd..ada852e19493531b8c19a217ae6a7354b0b13633 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 e203c3dd0ed4ee999adfdd872981d95938d36252..2547937bbd282c4ae6a0be701c76f4c1b60298e9 100644 --- a/src/views/followupentry/components/publicDialog.vue +++ b/src/views/followupentry/components/publicDialog.vue @@ -1,6 +1,12 @@