From fd46407dfabfe30e28c8d9b16d6496ab91be541d Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 28 May 2024 11:15:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E6=A3=80=E6=9F=A5=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=8E=A8=E9=80=81=E8=AE=B0=E5=BD=95=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inspection.js | 18 ++ .../components/push-record-list.vue | 303 ++++++++++++++++++ .../components/view-study-list.vue | 1 + src/views/trials/trials-inspection/index.vue | 17 + 4 files changed, 339 insertions(+) create mode 100644 src/views/trials/trials-inspection/components/push-record-list.vue diff --git a/src/api/inspection.js b/src/api/inspection.js index fdc484e..0e2f7a8 100644 --- a/src/api/inspection.js +++ b/src/api/inspection.js @@ -37,6 +37,24 @@ export function getPatientJoinedTrialList(data) { }) } +// 检查->scp影像推送记录 +export function getSCPImageUploadList(data) { + return request({ + url: '/Patient/getSCPImageUploadList', + method: 'post', + data + }) +} + +// 下载记录 +export function getTrialSubjectVisitDownloadList(data) { + return request({ + url: '/Patient/getTrialSubjectVisitDownloadList', + method: 'post', + data + }) +} + // 获取患者列表(下拉框) export function getTrialSubejctSelectList(data) { return request({ diff --git a/src/views/trials/trials-inspection/components/push-record-list.vue b/src/views/trials/trials-inspection/components/push-record-list.vue new file mode 100644 index 0000000..e627343 --- /dev/null +++ b/src/views/trials/trials-inspection/components/push-record-list.vue @@ -0,0 +1,303 @@ + + \ No newline at end of file diff --git a/src/views/trials/trials-inspection/components/view-study-list.vue b/src/views/trials/trials-inspection/components/view-study-list.vue index b4bcc39..f3edccc 100644 --- a/src/views/trials/trials-inspection/components/view-study-list.vue +++ b/src/views/trials/trials-inspection/components/view-study-list.vue @@ -273,6 +273,7 @@ export default { this.list = res.Result; } } catch (err) { + this.loading = false; console.log(err); } }, diff --git a/src/views/trials/trials-inspection/index.vue b/src/views/trials/trials-inspection/index.vue index fba4d66..ec06d34 100644 --- a/src/views/trials/trials-inspection/index.vue +++ b/src/views/trials/trials-inspection/index.vue @@ -92,6 +92,12 @@ {{ $t("common:button:reset") }} + + + + {{ $t("common:button:push") }} + + @@ -294,6 +300,13 @@ :Patient="selectPatient" @getList="getList" /> + +