diff --git a/src/views/dicom-show/dicom-study.vue b/src/views/dicom-show/dicom-study.vue index 3e7ff009..3955faef 100644 --- a/src/views/dicom-show/dicom-study.vue +++ b/src/views/dicom-show/dicom-study.vue @@ -450,6 +450,7 @@ export default { let index = 0; if (seriesId) { index = this.seriesList.findIndex(item => item.seriesId === seriesId) + this.refreshImage(this.seriesList[index]) } this.$refs.dicomViewer.loadImageStack(this.seriesList[index], this.labels[this.tpCode]) this.firstInstanceId = this.seriesList[index].imageIds[0] diff --git a/src/views/dictionary/attachment/components/SignatureTemplate/TemplateForm.vue b/src/views/dictionary/attachment/components/SignatureTemplate/TemplateForm.vue index a0c70eab..b0b3746d 100644 --- a/src/views/dictionary/attachment/components/SignatureTemplate/TemplateForm.vue +++ b/src/views/dictionary/attachment/components/SignatureTemplate/TemplateForm.vue @@ -22,6 +22,11 @@ + + + + + @@ -83,6 +88,7 @@ export default { DocUserSignType: 0, CurrentStaffTrainDays: 1, NewStaffTrainDays: 14, + DocLanguageType: null }, rules: { FileTypeId: [ @@ -92,6 +98,13 @@ export default { trigger: ['blur'], }, ], + DocLanguageType: [ + { + required: true, + message: this.$t('common:ruleMessage:select'), + trigger: ['blur'], + }, + ], SignViewMinimumMinutes: [ { required: true, @@ -143,6 +156,9 @@ export default { this.form.DocUserSignType = this.data.DocUserSignType this.form.CurrentStaffTrainDays = this.data.CurrentStaffTrainDays this.form.NewStaffTrainDays = this.data.NewStaffTrainDays + this.form.DocLanguageType = this.data.DocLanguageType + } else { + this.form.DocLanguageType = this.$i18n.locale !== 'zh' ? 1 : 0 } this.loading = false }, diff --git a/src/views/dictionary/attachment/components/SignatureTemplate/index.vue b/src/views/dictionary/attachment/components/SignatureTemplate/index.vue index 5b474e0d..ae86b049 100644 --- a/src/views/dictionary/attachment/components/SignatureTemplate/index.vue +++ b/src/views/dictionary/attachment/components/SignatureTemplate/index.vue @@ -26,6 +26,11 @@ + + + + + + + + - + { IsDeleted: null, DocUserSignType: null, UserTypeId: null, + DocLanguageType: null, Name: '', PageIndex: 1, PageSize: 20, diff --git a/src/views/dictionary/institutions/components/SiteForm.vue b/src/views/dictionary/institutions/components/SiteForm.vue index 17e07d21..5b52188c 100644 --- a/src/views/dictionary/institutions/components/SiteForm.vue +++ b/src/views/dictionary/institutions/components/SiteForm.vue @@ -1,13 +1,6 @@