This commit is contained in:
root 2025-10-11 17:29:01 +08:00
parent ed0c44ed6d
commit 4b7ce17883

View File

@ -135,7 +135,7 @@
</div> </div>
<div class="gauge-group-box" style="justify-content: center;"> <div class="gauge-group-box" style="justify-content: center;">
<div class="gauge-group-box-text1">最大<span class="gauge-group-box-text2">{{ <div class="gauge-group-box-text1">最大<span class="gauge-group-box-text2">{{
headPoseMaxValues.rotationRightMax.toFixed(1) }}°</span></div> headPoseMaxValues.rotationRightMax.toFixed(1) }}°</span></div>
</div> </div>
@ -163,7 +163,7 @@
headPoseMaxValues.pitchDownMax.toFixed(1) }}°</span></div> headPoseMaxValues.pitchDownMax.toFixed(1) }}°</span></div>
</div> </div>
<div class="gauge-group-box" style="justify-content: center;"> <div class="gauge-group-box" style="justify-content: center;">
<div class="gauge-group-box-text1">最大<span class="gauge-group-box-text2">{{ <div class="gauge-group-box-text1">最大<span class="gauge-group-box-text2">{{
headPoseMaxValues.pitchUpMax.toFixed(1) }}°</span></div> headPoseMaxValues.pitchUpMax.toFixed(1) }}°</span></div>
</div> </div>
</div> </div>
@ -813,10 +813,10 @@ const startTimer = () => {
// //
seconds.value = Math.round(elapsed / 1000); seconds.value = Math.round(elapsed / 1000);
// 10600 // 101800
if (seconds.value >= 600) { if (seconds.value >= 1800) {
console.log('⏰ 检测时长超过10分钟自动停止检测'); console.log('⏰ 检测时长超过30分钟自动停止检测');
ElMessage.warning('检测时长已达到10分钟自动停止检测'); ElMessage.warning('检测时长已达到30分钟自动停止检测');
stopRecord() stopRecord()
return; return;
} }