diff --git a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue index 979db17b..72a6e7fc 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/DicomViewer.vue @@ -1230,7 +1230,7 @@ export default { async getHotKeys() { // const loading = this.$loading({ fullscreen: true }) try { - const res = await getDoctorShortcutKey({ imageToolType: 0 }) + const res = await getDoctorShortcutKey({ imageToolType: 1 }) res.Result.map(item => { this.hotKeyList.push({ id: item.Id, altKey: item.AltKey, ctrlKey: item.CtrlKey, shiftKey: item.ShiftKey, metaKey: item.MetaKey, key: item.Keyboardkey, code: item.Code, text: item.Text, shortcutKeyEnum: item.ShortcutKeyEnum }) }) diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Hotkeys.vue b/src/views/trials/trials-panel/reading/dicoms/components/Hotkeys.vue index 1f1cdb63..89e5f2e5 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Hotkeys.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Hotkeys.vue @@ -60,7 +60,7 @@ export default { this.loading = true this.hotKeyList = [] try { - const res = await getDoctorShortcutKey({ imageToolType: this.readingTool }) + const res = await getDoctorShortcutKey({ imageToolType: this.readingTool === 1 ? 2 : 1 }) if (res.IsSuccess) { res.Result.map(item => { this.hotKeyList.push({ id: item.Id, keys: { controlKey: { altKey: item.AltKey, ctrlKey: item.CtrlKey, shiftKey: item.ShiftKey, metaKey: item.MetaKey, key: item.Keyboardkey, code: item.Code }, text: item.Text }, label: item.ShortcutKeyEnum }) diff --git a/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeDicomViewer.vue b/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeDicomViewer.vue index 1f635265..507bc05e 100644 --- a/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeDicomViewer.vue +++ b/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeDicomViewer.vue @@ -924,7 +924,7 @@ export default { async getHotKeys() { // const loading = this.$loading({ fullscreen: true }) try { - let res = await getDoctorShortcutKey({ imageToolType: 0 }) + let res = await getDoctorShortcutKey({ imageToolType: 1 }) res.Result.map((item) => { this.hotKeyList.push({ id: item.Id, diff --git a/src/views/trials/trials-panel/reading/dicoms/customize/Hotkeys.vue b/src/views/trials/trials-panel/reading/dicoms/customize/Hotkeys.vue index 6b98939a..839805a9 100644 --- a/src/views/trials/trials-panel/reading/dicoms/customize/Hotkeys.vue +++ b/src/views/trials/trials-panel/reading/dicoms/customize/Hotkeys.vue @@ -61,7 +61,7 @@ export default { this.loading = true this.hotKeyList = [] try{ - let res = await getDoctorShortcutKey({ imageToolType: this.readingTool }) + let res = await getDoctorShortcutKey({ imageToolType: this.readingTool === 1 ? 2 : 1 }) res.Result.map(item => { this.hotKeyList.push({ id: item.Id, keys: { controlKey: { altKey: item.AltKey, ctrlKey: item.CtrlKey, shiftKey: item.ShiftKey, metaKey: item.MetaKey, key: item.Keyboardkey, code: item.Code }, text: item.Text }, label: item.ShortcutKeyEnum }) }) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue index eb315fd2..8bfe8c25 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -3124,7 +3124,7 @@ export default { // 获取热键配置信息 async getHotKeys() { try { - const res = await getDoctorShortcutKey({ imageToolType: 0 }) + const res = await getDoctorShortcutKey({ imageToolType: 1 }) res.Result.map(item => { this.hotKeyList.push({ id: item.Id, altKey: item.AltKey, ctrlKey: item.CtrlKey, shiftKey: item.ShiftKey, metaKey: item.MetaKey, key: item.Keyboardkey, code: item.Code, text: item.Text, shortcutKeyEnum: item.ShortcutKeyEnum }) }) diff --git a/src/views/trials/trials-panel/reading/visit-review/components/FileViewer.vue b/src/views/trials/trials-panel/reading/visit-review/components/FileViewer.vue index 1d237434..d867d4ee 100644 --- a/src/views/trials/trials-panel/reading/visit-review/components/FileViewer.vue +++ b/src/views/trials/trials-panel/reading/visit-review/components/FileViewer.vue @@ -129,7 +129,7 @@
-
+
- + + + + + + + + + + + @@ -2178,4 +2321,17 @@ export default { } } } +.personal_config { + ::v-deep .el-tabs__content { + height: 450px; + overflow-y: auto; + } + ::v-deep .hot-keys-label { + color: #dfdfdf !important; + } + + ::v-deep .shortcut-key-input span { + color: #dfdfdf !important; + } +}