From 162a9b6e58a6c1805c1d2219de54a57a3dac77da Mon Sep 17 00:00:00 2001 From: zhanghao <774378400@qq.com> Date: Thu, 2 Jul 2026 17:38:02 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/arm/MechanicalArm.vue | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/src/views/arm/MechanicalArm.vue b/src/views/arm/MechanicalArm.vue index 232164a..7ca55fe 100644 --- a/src/views/arm/MechanicalArm.vue +++ b/src/views/arm/MechanicalArm.vue @@ -9,31 +9,37 @@
X - + +
{{ tcp.x.toFixed(3) }}
RX - + +
{{ tcp.rx.toFixed(3) }}
Y - + +
{{ tcp.y.toFixed(3) }}
RY - +
{{ tcp.ry.toFixed(3) }}
+
Z - + +
{{ tcp.z.toFixed(3) }}
RZ - +
{{ tcp.rz.toFixed(3) }}
+
@@ -407,6 +413,7 @@ onMounted(() => { clearInterval(timer.value) } timer.value = setInterval(() => { + getPose() getJointState() }, 100) }) @@ -452,6 +459,13 @@ onUnmounted(() => { display: flex; gap: 20px; margin-bottom: 12px; + + .number { + width: 180px; + border-radius: 5px; + padding: 6px; + background: #2d323e; + } } }