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 },