灯光调整

This commit is contained in:
zc
2026-04-07 14:59:06 +08:00
parent 6f3613133b
commit 45bd3bc8f5

View File

@@ -415,6 +415,9 @@ onMounted(() => {
connect().catch(error => {
console.error('连接灯光失败:', error)
})
getVmSaveImageTask().catch(error => {
console.error('启动vm定时任务保存图片失败:', error)
})
}
// 监听步骤变化
@@ -468,6 +471,9 @@ onBeforeUnmount(() => {
disconnect().catch(error => {
console.error('断开灯光失败:', error)
})
getVmCloseTask().catch(error => {
console.error('关闭vm定时任务失败:', error)
})
})
const workOrderResp = ref<WorkOrderResp>({
@@ -685,8 +691,6 @@ const handleNext = async () => {
}
}
// 处理上一步
const handlePrevious = () => {
if (activeStep.value > 1) {