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" /> + +