From 6b1bfe0c0b7f95635878b1ec772105c16aab3da8 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 22 Oct 2024 14:53:09 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E8=B7=9F=E8=B8=AA=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/export.js | 16 ++ .../components/exportList.vue | 143 ++++++++++++------ 2 files changed, 113 insertions(+), 46 deletions(-) diff --git a/src/api/export.js b/src/api/export.js index f2285747..77d99a12 100644 --- a/src/api/export.js +++ b/src/api/export.js @@ -214,3 +214,19 @@ export function getPatientList_Export(data) { data }) } +export function getCommonEvaluationList_Export(data) { + return requestDownload({ + url: `/ExcelExport/getCommonEvaluationList_Export`, + responseType: 'blob', + method: 'post', + data + }) +} +export function getCommonJudgeRatioList_Export(data) { + return requestDownload({ + url: `/ExcelExport/getCommonJudgeRatioList_Export`, + responseType: 'blob', + method: 'post', + data + }) +} 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 35f811b3..c0fa962a 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 @@ -1,23 +1,27 @@