diff --git a/src/views/inspection/cockpit/components/ManualTakeover.vue b/src/views/inspection/cockpit/components/ManualTakeover.vue
deleted file mode 100644
index 9f78c58..0000000
--- a/src/views/inspection/cockpit/components/ManualTakeover.vue
+++ /dev/null
@@ -1,641 +0,0 @@
-
-
-
-
-
-
-
控制模式
-
-
-
- 自动巡检
-
-
-
- 人工接管
-
-
-
-
-
- 底盘
- 机械臂
- 相机
-
-
人工控制面板
-
-
-
- 方向控制器
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
移动速度
-
{{ speed }}m/s
-
-
-
-
-
- 末端控制
- 关节控制
- 姿态控制
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/inspection/cockpit/components/ManualTakeover/RoboticArm.vue b/src/views/inspection/cockpit/components/ManualTakeover/RoboticArm.vue
index 2ccbe7e..8ba9ba0 100644
--- a/src/views/inspection/cockpit/components/ManualTakeover/RoboticArm.vue
+++ b/src/views/inspection/cockpit/components/ManualTakeover/RoboticArm.vue
@@ -282,6 +282,12 @@ watch(() => props.robot, (newRobot) => {
}, 100)
}
}, { immediate: true })
+
+onUnmounted(() => {
+ if (timer.value) {
+ clearInterval(timer.value)
+ }
+})