From 71d9dbccd18caafea4f486db9a1e57af88dc035b Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 17 Sep 2025 16:09:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E5=BA=93=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E6=89=80=E6=9C=89=E5=BD=B1=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/push-record-list.vue | 2 +- .../components/view-study-list.vue | 90 +++++++++++++++++-- src/views/trials/trials-inspection/index.vue | 17 +++- 3 files changed, 99 insertions(+), 10 deletions(-) diff --git a/src/views/trials/trials-inspection/components/push-record-list.vue b/src/views/trials/trials-inspection/components/push-record-list.vue index e10abcb..e1a6c86 100644 --- a/src/views/trials/trials-inspection/components/push-record-list.vue +++ b/src/views/trials/trials-inspection/components/push-record-list.vue @@ -82,7 +82,7 @@ + :disabled="!row.UploadJsonStr" @click.stop="view(scope.row)" /> diff --git a/src/views/trials/trials-inspection/components/view-study-list.vue b/src/views/trials/trials-inspection/components/view-study-list.vue index ca5954e..66c4bdf 100644 --- a/src/views/trials/trials-inspection/components/view-study-list.vue +++ b/src/views/trials/trials-inspection/components/view-study-list.vue @@ -1,11 +1,41 @@ @@ -178,7 +184,8 @@ @handleOpenDialog="handleOpenDialog" /> + :isAll="studyAll" :calledAeList="calledAeList" :callingAeList="callingAeList" + :hospitalGroupList="hospitalGroupList" @getList="getList" /> @@ -248,7 +255,8 @@ export default { pushTrialsVisible: false, // pacs拉取列表 pullTrialsVisible: false, - hospitalGroupList: [] + hospitalGroupList: [], + studyAll: false } }, created() { @@ -365,7 +373,10 @@ export default { this.getList() }, // 打开弹框 - handleOpenDialog(item, key) { + handleOpenDialog(item, key, isAll = false) { + if (key === 'study') { + this[`${key}All`] = isAll + } this[`${key}TrialsVisible`] = true this.selectPatient = item },