From 49e22d55cd4b271a501fbe321bf16aa312237228 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 8 Apr 2024 17:52:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=A3=80=E6=9F=A5=E6=9C=AA?= =?UTF-8?q?=E7=BB=91=E5=AE=9A=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/trials/study.js | 9 + .../hirVisit/components/edit-study-list.vue | 22 +- .../trials/trials-panel/hirVisit/index.vue | 6 +- .../trials-panel/study/components/list.vue | 4 +- .../study/components/not-bind-study.vue | 352 ++++++++++++++++++ src/views/trials/trials-panel/study/index.vue | 10 +- .../subject-list/components/add-subject.vue | 33 +- 7 files changed, 404 insertions(+), 32 deletions(-) create mode 100644 src/views/trials/trials-panel/study/components/not-bind-study.vue diff --git a/src/api/trials/study.js b/src/api/trials/study.js index 78f74c1..c9dc3a0 100644 --- a/src/api/trials/study.js +++ b/src/api/trials/study.js @@ -17,4 +17,13 @@ export function getTrialPatientStudyList(data) { method: 'post', data }) +} + +// 检查列表->未绑定 +export function getTrialUnbindSubjectVisitStudyList(data) { + return request({ + url: '/Patient/getTrialUnbindSubjectVisitStudyList', + method: 'post', + data + }) } \ No newline at end of file diff --git a/src/views/trials/trials-panel/hirVisit/components/edit-study-list.vue b/src/views/trials/trials-panel/hirVisit/components/edit-study-list.vue index 5b56976..ad60b0e 100644 --- a/src/views/trials/trials-panel/hirVisit/components/edit-study-list.vue +++ b/src/views/trials/trials-panel/hirVisit/components/edit-study-list.vue @@ -17,14 +17,14 @@
{{ $t("trials:hirVisit:titleMessage:currentStudy") }} -
+
+ + + + { +const defaultSearchData = () => { return { SubjectCode: null, PatientIdStr: null, @@ -295,7 +295,7 @@ export default { searchData: defaultSearchData(), dateValue: [], // 列表 - list: [{ SubmitTime: 1 }], + list: [], loading: false, total: 0, diff --git a/src/views/trials/trials-panel/study/components/not-bind-study.vue b/src/views/trials/trials-panel/study/components/not-bind-study.vue new file mode 100644 index 0000000..88d6224 --- /dev/null +++ b/src/views/trials/trials-panel/study/components/not-bind-study.vue @@ -0,0 +1,352 @@ + + \ No newline at end of file diff --git a/src/views/trials/trials-panel/study/index.vue b/src/views/trials/trials-panel/study/index.vue index d61a2a9..8aea5ae 100644 --- a/src/views/trials/trials-panel/study/index.vue +++ b/src/views/trials/trials-panel/study/index.vue @@ -1,6 +1,12 @@