From f10bae1ecce2c9d0e5b31587cf04b1fab85d526e Mon Sep 17 00:00:00 2001
From: "Lyj@210615" <18050528999@163.com>
Date: Tue, 3 Jan 2023 17:34:56 +0800
Subject: [PATCH] =?UTF-8?q?=E9=9A=8F=E8=AE=BF=E8=B4=A8=E6=8E=A7=E5=88=97?=
=?UTF-8?q?=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/followup.js | 15 ++++++
src/views/audit-qualitycontrol/community.vue | 50 ++++++++++++++++---
.../audit-qualitycontrol/healthcheckup.vue | 14 +++++-
src/views/audit-qualitycontrol/hospital.vue | 14 ++++--
src/views/followupentry/followaudit.vue | 4 +-
5 files changed, 84 insertions(+), 13 deletions(-)
create mode 100644 src/api/followup.js
diff --git a/src/api/followup.js b/src/api/followup.js
new file mode 100644
index 0000000..ac5d5ed
--- /dev/null
+++ b/src/api/followup.js
@@ -0,0 +1,15 @@
+import request from "@/utils/request";
+
+/**
+ * 随访
+ *
+ * */
+
+//审核质控 随访
+export function getFollowCheck(params = {}) {
+ return request({
+ url: "/follow/check/:patientFrom",
+ method: "get",
+ params,
+ });
+}
\ No newline at end of file
diff --git a/src/views/audit-qualitycontrol/community.vue b/src/views/audit-qualitycontrol/community.vue
index 6d8f97c..4d1b1b5 100644
--- a/src/views/audit-qualitycontrol/community.vue
+++ b/src/views/audit-qualitycontrol/community.vue
@@ -13,7 +13,8 @@