diff --git a/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue b/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue index c478cc06..31ec845f 100644 --- a/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue +++ b/src/views/trials/trials-panel/trial-summary/upload-monitor/index.vue @@ -45,6 +45,10 @@ /> + + + + @@ -348,7 +352,8 @@ const searchDataDefault = () => { VisitPlanArray: [], IsDicom: null, Uploader: null, - IsSuccess: null + IsSuccess: null, + StudyCode: null } } export default { @@ -368,6 +373,9 @@ export default { }, mounted() { this.getSite() + if (this.$route.query.studyCode) { + this.searchData.StudyCode = this.$route.query.studyCode + } this.getList() this.getVisitPlanOptions() }, diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue index 38f4972d..d065c2bb 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue @@ -106,7 +106,7 @@ min-width="80" show-overflow-tooltip /> - + @@ -568,6 +574,9 @@ export default { this.myInterval = [] }, methods: { + handleHistorical(row) { + this.$router.push(`/trials/trials-panel/trial-summary/upload-monitor?trialId=${this.trialId}&trialCode=${this.$route.query.trialCode}&${this.$route.query.researchProgramNo}&studyCode=${row.StudyCode}`) + }, // 打开检查信息编辑框 handleEditStudy(row) { this.editStudyInfoVisible = true