From 214fb4d5ecf60f4b5278764a8d7635f6c643c220 Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Tue, 16 Sep 2025 14:52:06 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E5=BA=93=E5=88=97=E8=A1=A8?=
=?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=AF=BE=E9=A2=98=E7=BB=84=E6=9F=A5=E8=AF=A2?=
=?UTF-8?q?=E6=9D=A1=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/recompose/index.vue | 6 +++---
src/views/trials/trials-inspection/index.vue | 22 +++++++++++++++++++-
2 files changed, 24 insertions(+), 4 deletions(-)
diff --git a/src/views/recompose/index.vue b/src/views/recompose/index.vue
index 6c56e3e..52db281 100644
--- a/src/views/recompose/index.vue
+++ b/src/views/recompose/index.vue
@@ -145,9 +145,9 @@ export default {
} else {
this.$router.push(`/login`);
}
- this.$i18n.locale = "zh";
- this.setLanguage("zh");
- this.$updateDictionary();
+ // this.$i18n.locale = "zh";
+ // this.setLanguage("zh");
+ // this.$updateDictionary();
},
save() {
this.$refs.passwordForm.validate((valid) => {
diff --git a/src/views/trials/trials-inspection/index.vue b/src/views/trials/trials-inspection/index.vue
index 868730d..f36278f 100644
--- a/src/views/trials/trials-inspection/index.vue
+++ b/src/views/trials/trials-inspection/index.vue
@@ -28,6 +28,13 @@
+
+
+
+
+
+
+
{
return {
PatientIdStr: null,
@@ -198,6 +205,7 @@ const defaultSearchData = () => {
CalledAEList: [],
callingAE: null,
ExperimentName: null,
+ HospitalGroupIdList: [],
Asc: false,
BeginPushTime: null,
EndPushTime: null,
@@ -240,14 +248,26 @@ export default {
pushTrialsVisible: false,
// pacs拉取列表
pullTrialsVisible: false,
+ hospitalGroupList: []
}
},
created() {
this.getDicomCalledAEList()
this.getDicomCallingAEList()
this.getList()
+ this.getHospitalGroupList()
},
methods: {
+ async getHospitalGroupList() {
+ try {
+ let res = await getHospitalGroupList({})
+ if (res.IsSuccess) {
+ this.hospitalGroupList = res.Result
+ }
+ } catch (err) {
+ console.log(err)
+ }
+ },
// 清除数据
async deletePatientStudyAllData(item) {
try {