diff --git a/src/views/trials/trials-panel/trial-summary/image-inspect/components/view-study.vue b/src/views/trials/trials-panel/trial-summary/image-inspect/components/view-study.vue
index 27f4532c..40fa342e 100644
--- a/src/views/trials/trials-panel/trial-summary/image-inspect/components/view-study.vue
+++ b/src/views/trials/trials-panel/trial-summary/image-inspect/components/view-study.vue
@@ -234,7 +234,7 @@ export default {
let res = await getPatientStudyList(data);
this.loading = false;
if (res.IsSuccess) {
- this.list = res.Result;
+ this.list = res.Result.CurrentPageData;
}
} catch (err) {
this.loading = false;
diff --git a/src/views/trials/trials-panel/trial-summary/image-inspect/index.vue b/src/views/trials/trials-panel/trial-summary/image-inspect/index.vue
index a8acfdd1..546770a7 100644
--- a/src/views/trials/trials-panel/trial-summary/image-inspect/index.vue
+++ b/src/views/trials/trials-panel/trial-summary/image-inspect/index.vue
@@ -155,7 +155,7 @@
show-overflow-tooltip
sortable="custom"
>
- {{ scope.row.CallingAEList.join(", ") }}
+ {{ scope.row.CalledAEList.join(", ") }}
@@ -198,7 +198,7 @@
sortable="custom"
>
- {{ scope.row.trialSiteCode }},{{ scope.row.trialSiteName }}
+ {{ scope.row.TrialSiteCode }},{{ scope.row.TrialSiteAliasName }}
diff --git a/src/views/trials/trials-panel/trial-summary/push-record/index.vue b/src/views/trials/trials-panel/trial-summary/push-record/index.vue
index cc1f5bba..31338ef7 100644
--- a/src/views/trials/trials-panel/trial-summary/push-record/index.vue
+++ b/src/views/trials/trials-panel/trial-summary/push-record/index.vue
@@ -108,15 +108,11 @@
-
- {{ scope.row.CallingAEList.join(", ") }}
-
-
+ />
- {{ scope.row.CallingAEList.join(", ") }}
-
-
+ />
+ >
+
+ {{
+ scope.row.FileSize && scope.row.FileSize > 0
+ ? `${(scope.row.FileSize / 1024 / 1024).toFixed(2)}MB`
+ : 0
+ }}
+
+
{
if (res.IsSuccess) {
this.getStudyInfo();
+ if (this.uploadActiveName === "pacs") {
+ this.$refs.dicomPacs.getList();
+ }
if (
this.$route.path !== "/trials/trials-panel/visit/crc-question"
) {
diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDiocmPacs.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDiocmPacs.vue
index fe67452f..8b39ac65 100644
--- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDiocmPacs.vue
+++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDiocmPacs.vue
@@ -10,11 +10,13 @@
prop="TrialSiteKeyInfo"
>
@@ -136,10 +138,8 @@
{
return {
+ PatientInfo: null,
EarliestStudyTime: null,
LatestStudyTime: null,
Modalities: null,