feat(context-menu): 将导航参数从机器人标签改为ID以确保后端正确识别机器人

This commit is contained in:
xudan 2025-12-08 17:30:52 +08:00
parent 327cbce09b
commit 10df768c2d

View File

@ -109,7 +109,7 @@ const handleRobotSelected = async (data: { robot: RobotInfo; targetPointName: st
const result = await executeNavigateToPoint( const result = await executeNavigateToPoint(
pointInfo.value.id, pointInfo.value.id,
pointInfo.value.name, pointInfo.value.name,
data.robot.label, data.robot.id,
data.robot.label data.robot.label
); );