From 61f84552bfaff9bb1a52d75dffbe886f100239ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Mon, 14 Jul 2025 14:34:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=83=85=E7=BB=AA=E8=83=BD=E9=87=8F=E8=BD=AC?= =?UTF-8?q?=E5=8C=96=E5=99=A8=E5=8E=BB=E9=99=A4=E8=BE=B9=E7=95=8C=E6=95=B0?= =?UTF-8?q?=E5=80=BC=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/emoEnergyConverter.vue | 30 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/views/components/emoEnergyConverter.vue b/src/views/components/emoEnergyConverter.vue index 462b524..06e985b 100644 --- a/src/views/components/emoEnergyConverter.vue +++ b/src/views/components/emoEnergyConverter.vue @@ -64,21 +64,21 @@ const generateGraphics = (min, max) => { }); } // y轴数值(顶部位置) - if (isFullyVisible) { - graphics.push({ - type: "text", - left: '13%', // 向右调整位置 - top: getNumberTop(min, max, region.max), - // top: 100, - style: { - text: region.max.toString(), - fill: region.NumberColor, - fontSize: 12, - fontWeight: "bold", - }, - z: 3, - }); - } + // if (isFullyVisible) { + // graphics.push({ + // type: "text", + // left: '13%', // 向右调整位置 + // top: getNumberTop(min, max, region.max), + // // top: 100, + // style: { + // text: region.max.toString(), + // fill: region.NumberColor, + // fontSize: 12, + // fontWeight: "bold", + // }, + // z: 3, + // }); + // } return graphics; }); };