From 4b7ce17883608dbd9f32491c58961a05d88bde4a Mon Sep 17 00:00:00 2001 From: root <13910913995@163.com> Date: Sat, 11 Oct 2025 17:29:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/renderer/src/views/Detection.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/renderer/src/views/Detection.vue b/frontend/src/renderer/src/views/Detection.vue index 44a0a7ab..4acd8813 100644 --- a/frontend/src/renderer/src/views/Detection.vue +++ b/frontend/src/renderer/src/views/Detection.vue @@ -135,7 +135,7 @@
-
左最大:{{ +
右最大:{{ headPoseMaxValues.rotationRightMax.toFixed(1) }}°
@@ -163,7 +163,7 @@ headPoseMaxValues.pitchDownMax.toFixed(1) }}°
-
俯最大:{{ +
仰最大:{{ headPoseMaxValues.pitchUpMax.toFixed(1) }}°
@@ -813,10 +813,10 @@ const startTimer = () => { // 转换为秒并四舍五入 seconds.value = Math.round(elapsed / 1000); - // 检测时长超过10分钟(600秒)自动停止检测 - if (seconds.value >= 600) { - console.log('⏰ 检测时长超过10分钟,自动停止检测'); - ElMessage.warning('检测时长已达到10分钟,自动停止检测'); + // 检测时长超过10分钟(1800秒)自动停止检测 + if (seconds.value >= 1800) { + console.log('⏰ 检测时长超过30分钟,自动停止检测'); + ElMessage.warning('检测时长已达到30分钟,自动停止检测'); stopRecord() return; }