diff --git a/src/components/home/FillSolution/index.vue b/src/components/home/FillSolution/index.vue index 51c6679..69d86f3 100644 --- a/src/components/home/FillSolution/index.vue +++ b/src/components/home/FillSolution/index.vue @@ -1,6 +1,8 @@ diff --git a/src/views/debug/index.vue b/src/views/debug/index.vue index f71bee5..ef48d9a 100644 --- a/src/views/debug/index.vue +++ b/src/views/debug/index.vue @@ -458,10 +458,62 @@ const debug_door_stop = async () => { } await debugStore.sendControl(params) } + +const debug_move_tray_to_solution_area = async () => { + currentCommandId = Date.now().toString() + const params = { + commandId: currentCommandId, + command: 'debug_move_tray_to_solution_area', + params: { + heatId: debugStore.formData.heatArea.index, + }, + } + await debugStore.sendControl(params) +} + +const debug_move_tray_to_heat_area = async () => { + currentCommandId = Date.now().toString() + const params = { + commandId: currentCommandId, + command: 'debug_move_tray_to_heat_area', + params: { + heatId: debugStore.formData.heatArea.index, + }, + } + await debugStore.sendControl(params) +} + +const debug_cap_in_heat_area = async () => { + currentCommandId = Date.now().toString() + const params = { + commandId: currentCommandId, + command: 'debug_cap_in_heat_area', + params: { + heatId: debugStore.formData.heatArea.index, + }, + } + await debugStore.sendControl(params) +} + +const debug_cap_out_heat_area = async () => { + currentCommandId = Date.now().toString() + const params = { + commandId: currentCommandId, + command: 'debug_cap_out_heat_area', + params: { + heatId: debugStore.formData.heatArea.index, + }, + } + await debugStore.sendControl(params) +} + 复合操作 +
+ + + + 将托盘移至加液区 + + + 将托盘移至加热区 + + + 安装拍子 + + + 拆卸拍子 + + + +
升降电机