From ca2e9e0253d763ea3711be87d2b99f03bd886339 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Tue, 21 Apr 2026 11:14:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=90=8C=E6=AD=A5=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trial-summary/data-sync/components/StudyList.vue | 9 ++++++++- .../trials-panel/trial-summary/data-sync/index.vue | 6 ++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-panel/trial-summary/data-sync/components/StudyList.vue b/src/views/trials/trials-panel/trial-summary/data-sync/components/StudyList.vue index b8277cf1..42ca8335 100644 --- a/src/views/trials/trials-panel/trial-summary/data-sync/components/StudyList.vue +++ b/src/views/trials/trials-panel/trial-summary/data-sync/components/StudyList.vue @@ -177,9 +177,15 @@ const searchDataDefault = () => { Asc: true, SortField: 'StudyCode' } -} +} export default { components: { BaseContainer, Pagination, FileList, TaskList }, + props: { + dataFileType: { + type: Number, + required: true + } + }, data() { return { trialId: '', @@ -220,6 +226,7 @@ export default { try { this.loading = true this.searchData.TrialId = this.trialId + this.searchData.DataFileType = this.dataFileType let res = await getSubjectUploadRecordList(this.searchData) this.loading = false this.list = res.Result.CurrentPageData diff --git a/src/views/trials/trials-panel/trial-summary/data-sync/index.vue b/src/views/trials/trials-panel/trial-summary/data-sync/index.vue index ad87b542..a2f64a43 100644 --- a/src/views/trials/trials-panel/trial-summary/data-sync/index.vue +++ b/src/views/trials/trials-panel/trial-summary/data-sync/index.vue @@ -1,9 +1,11 @@