From 87fc17bb67699d5007de0dc1059775e73fa859f6 Mon Sep 17 00:00:00 2001 From: miaojiale <1123971748@qq.com> Date: Tue, 4 Apr 2023 15:19:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=9A=8F=E8=AE=BF=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=8F=B3=E4=BE=A7=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/patient.js | 9 ++ src/views/followupentry/index.vue | 50 ++++++++-- src/views/followupquery/index.vue | 92 ++++++++++++------- src/views/screening/DraftBox.vue | 11 ++- .../screening/components/ConfigForms.vue | 24 +++-- 5 files changed, 132 insertions(+), 54 deletions(-) diff --git a/src/api/patient.js b/src/api/patient.js index fd37c67..2925534 100644 --- a/src/api/patient.js +++ b/src/api/patient.js @@ -200,3 +200,12 @@ export function getApScoreDetailList(params = {}) { params, }) } + +// 获取随访计划右侧列表 +export function getFollowList(params = {}) { + return request({ + url: "/disease-data/data/patient/log/list", + method: "get", + params, + }) +} diff --git a/src/views/followupentry/index.vue b/src/views/followupentry/index.vue index a137a0c..f5cf87e 100644 --- a/src/views/followupentry/index.vue +++ b/src/views/followupentry/index.vue @@ -1,14 +1,17 @@