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 {