From 7bd25cf192bb2b34529c4d22d8b1b32cdcc5f02d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=86=8A=E9=A3=9E?= Date: Tue, 16 Jan 2024 13:23:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0bug=E5=A4=84=E7=90=86?= =?UTF-8?q?=EF=BC=8Cbug=E6=97=A5=E5=BF=97=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- .../trial-summary/upload-monitor/index.vue | 47 +++++++- .../components/uploadDicomFiles2.vue | 110 ++++++++++++++---- 3 files changed, 135 insertions(+), 24 deletions(-) diff --git a/src/App.vue b/src/App.vue index 58831492..37114c81 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,7 @@ + +
+ {{ lookText }} +
+ +
@@ -273,6 +308,7 @@ import { getStudyUploadMonitor_Export } from '@/api/export' import Pagination from '@/components/Pagination' import BaseContainer from '@/components/BaseContainer' import BaseModel from '@/components/BaseModel' +import axios from "axios"; const searchDataDefault = () => { return { SortField: '', @@ -300,7 +336,9 @@ export default { searchData: searchDataDefault(), trialId: this.$route.query.trialId, siteOptions:[], - visitPlanOptions:[] + visitPlanOptions:[], + lookVisible: false, + lookText: null } }, mounted() { @@ -309,6 +347,13 @@ export default { this.getVisitPlanOptions() }, methods: { + async handleLook(row) { + this.lookVisible = true + var htmlUrl = this.OSSclientConfig.basePath + row.RecordPath + var res = await axios.get(htmlUrl) + console.log(res.data) + this.lookText = res.data + }, getList() { this.loading = true this.searchData.TrialId = this.trialId 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 a518b501..7199264d 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 @@ -132,7 +132,7 @@ {{ $t('trials:uploadedDicoms:title:dicomFilesOnly') }}