From b4821ace59663af7c5fee2fad103c292afb560f0 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 4 Dec 2025 15:10:57 +0800 Subject: [PATCH] =?UTF-8?q?oct=E6=A0=87=E5=87=86=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/export.js | 8 + .../components/OCT/QuestionTableFormItem.vue | 183 ++++++------------ .../components/exportList.vue | 44 ++--- 3 files changed, 92 insertions(+), 143 deletions(-) diff --git a/src/api/export.js b/src/api/export.js index 801716e6..32c24d34 100644 --- a/src/api/export.js +++ b/src/api/export.js @@ -239,6 +239,14 @@ export function getPatientList_Export(data) { data }) } +export function getTumor_CDISC_Export(data) { + return requestDownload({ + url: `/IVUS_OCTExport/getTumor_CDISC_Export`, + responseType: 'blob', + method: 'post', + data + }) +} export function getCommonEvaluationList_Export(data) { return requestDownload({ url: `/ExcelExport/getCommonEvaluationList_Export`, diff --git a/src/views/trials/trials-panel/reading/dicoms/components/OCT/QuestionTableFormItem.vue b/src/views/trials/trials-panel/reading/dicoms/components/OCT/QuestionTableFormItem.vue index 8500284f..8e2a32b6 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/OCT/QuestionTableFormItem.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/OCT/QuestionTableFormItem.vue @@ -1,119 +1,68 @@ diff --git a/src/views/trials/trials-panel/reading/reading-tracking/components/exportList.vue b/src/views/trials/trials-panel/reading/reading-tracking/components/exportList.vue index e49c8a8c..5e3a53b3 100644 --- a/src/views/trials/trials-panel/reading/reading-tracking/components/exportList.vue +++ b/src/views/trials/trials-panel/reading/reading-tracking/components/exportList.vue @@ -6,10 +6,7 @@ - + @@ -17,13 +14,8 @@ @@ -35,6 +27,7 @@ import { getCommonJudgeRatioList_Export, getReadingTaskList_Export, getTrialReadingCriterionCanExportDocumentList, + getTumor_CDISC_Export, getOverallTumorEvaluationList_Export, getEvaluationOfTumorEfficacy_Export, getDetailedOfEvaluatedLesion_Export, @@ -85,7 +78,7 @@ export default { switch (type) { case 0: getReadingTaskList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -93,7 +86,7 @@ export default { case 1: searchData.ReadingExportType = 1 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -101,7 +94,7 @@ export default { case 2: searchData.ReadingExportType = 2 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -109,7 +102,7 @@ export default { case 3: searchData.ReadingExportType = 3 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -117,7 +110,7 @@ export default { case 4: searchData.ReadingExportType = 4 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -125,7 +118,7 @@ export default { case 7: searchData.ReadingExportType = 7 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -133,7 +126,7 @@ export default { case 8: searchData.ReadingExportType = 8 getCommonEvaluationList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -141,7 +134,7 @@ export default { case 17: searchData.ReadingExportType = 17 getCommonJudgeRatioList_Export(searchData) - .then((res) => {}) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -149,7 +142,15 @@ export default { case 18: searchData.ReadingExportType = 18 getCommonJudgeRatioList_Export(searchData) - .then((res) => {}) + .then((res) => { }) + .catch(() => { + this.loading = false + }) + break + case 21: + searchData.ReadingExportType = 18 + getTumor_CDISC_Export(searchData) + .then((res) => { }) .catch(() => { this.loading = false }) @@ -160,5 +161,4 @@ export default { } - +