From 641c2e6adee0e40875365540d1b8a5f36c147849 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Wed, 8 Apr 2026 16:22:29 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B4=E6=96=B9=E5=9B=BE=E5=8F=96=E5=80=BC?= =?UTF-8?q?=E5=8F=8A=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reading/dicoms3D/components/histogram.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/histogram.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/histogram.vue index 214cea71..9a64d272 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/histogram.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/histogram.vue @@ -23,7 +23,7 @@
-
+
@@ -194,6 +194,7 @@ export default { const option = { useUTC: true, title: { + show: false, text: this.$t("trials:histogram:title:histogram"), textStyle: { color: "#fff" @@ -203,6 +204,7 @@ export default { }, color: this.colors, grid: { + top: 0, left: 50, bottom: 80, right: 20 @@ -282,8 +284,11 @@ export default { } }) Object.keys(obj).forEach(key => { - let arr = [key, obj[key]] - seriesData.push(arr) + if (key > -1020) { + let arr = [key, obj[key]] + seriesData.push(arr) + } + }) } seriesData.sort((a, b) => a[0] - b[0]) @@ -1169,6 +1174,8 @@ export default { .el-dialog { position: fixed; top: 10px; + margin-top: 110px; + left: 220px; z-index: 9999; width: 450px; text-align: center;