From 0494d567db14a3aa20efb94093daa05297a698e9 Mon Sep 17 00:00:00 2001 From: "DESKTOP-6C3NK6N\\WXS" <815034831@qq.com> Date: Tue, 20 Aug 2024 14:27:05 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=97=E8=A1=A8=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E6=B7=BB=E5=8A=A0=E6=9F=A5=E8=AF=A2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trials/trials-list/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/trials/trials-list/index.vue b/src/views/trials/trials-list/index.vue index ea114ee7..b6392258 100644 --- a/src/views/trials/trials-list/index.vue +++ b/src/views/trials/trials-list/index.vue @@ -949,7 +949,11 @@ export default { // 导出Excel表格 handleExportTrial() { this.exportLoading = true; - return getTrialList_Export(this.searchData) + let data = { + ...this.searchData, + }; + data.TrialIdList = this.selectArr.map((item) => item.Id); + return getTrialList_Export(data) .then((res) => { this.exportLoading = false; })