|
|
@ -75,6 +75,30 @@ const debug_pallet_elevator_reset = async () => { |
|
|
|
await debugStore.sendControl(params) |
|
|
|
} |
|
|
|
|
|
|
|
const debug_vacuum_valve_open = async () => { |
|
|
|
currentCommandId = Date.now().toString() |
|
|
|
const params = { |
|
|
|
commandId: currentCommandId, |
|
|
|
command: 'debug_vacuum_valve_open', |
|
|
|
params: { |
|
|
|
heatId: debugStore.formData.heatArea.index, |
|
|
|
}, |
|
|
|
} |
|
|
|
await debugStore.sendControl(params) |
|
|
|
} |
|
|
|
|
|
|
|
const debug_vacuum_valve_close = async () => { |
|
|
|
currentCommandId = Date.now().toString() |
|
|
|
const params = { |
|
|
|
commandId: currentCommandId, |
|
|
|
command: 'debug_vacuum_valve_close', |
|
|
|
params: { |
|
|
|
heatId: debugStore.formData.heatArea.index, |
|
|
|
}, |
|
|
|
} |
|
|
|
await debugStore.sendControl(params) |
|
|
|
} |
|
|
|
|
|
|
|
const debug_heater_start = async () => { |
|
|
|
currentCommandId = Date.now().toString() |
|
|
|
const params = { |
|
|
@ -1174,79 +1198,84 @@ const savePositionVisible = ref(false) |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<el-divider>加热棒</el-divider> |
|
|
|
<el-divider>真空泵</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<el-form> |
|
|
|
<el-form-item label="温度"> |
|
|
|
<el-input v-model.number="debugStore.formData.heatArea.heatTemperature.temperature" type="number" placeholder="请输入温度"> |
|
|
|
<template #append> |
|
|
|
℃ |
|
|
|
</template> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_heater_start"> |
|
|
|
开始加热 |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_vacuum_valve_open"> |
|
|
|
开启阀门 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_heater_stop"> |
|
|
|
停止加热 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
<!-- <el-form-item> --> |
|
|
|
<!-- <ft-button type="primary" :click-handle="debug_heater_start_heat_maintaining"> --> |
|
|
|
<!-- 开始恒温 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- <ft-button :click-handle="debug_heater_stop_heat_maintaining"> --> |
|
|
|
<!-- 停止恒温 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- </el-form-item> --> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<el-divider>冷阱</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<el-form> |
|
|
|
<el-form-item label="温度"> |
|
|
|
<el-input v-model.number="debugStore.formData.heatArea.coldTrap.temperature" type="number" placeholder="请输入温度"> |
|
|
|
<template #append> |
|
|
|
℃ |
|
|
|
</template> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_cold_trap_start_refrigeration"> |
|
|
|
启动制冷 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_cold_trap_stop_refrigeration"> |
|
|
|
停止制冷 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_cold_trap_start_recycle"> |
|
|
|
启动循环 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_cold_trap_stop_recycle"> |
|
|
|
停止循环 |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_vacuum_valve_close"> |
|
|
|
关闭阀门 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<!-- <el-divider>拍子</el-divider> --> |
|
|
|
<!-- <div class="card-box"> --> |
|
|
|
<!-- <ft-button type="primary"> --> |
|
|
|
<!-- 启动吸附 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- <ft-button> --> |
|
|
|
<!-- 停止吸附 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- </div> --> |
|
|
|
<el-divider>风扇</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_fan_start"> |
|
|
|
打开风扇 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_fan_stop"> |
|
|
|
关闭风扇 |
|
|
|
</ft-button> |
|
|
|
<el-divider>加热棒</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<el-form> |
|
|
|
<el-form-item label="温度"> |
|
|
|
<el-input v-model.number="debugStore.formData.heatArea.heatTemperature.temperature" type="number" placeholder="请输入温度"> |
|
|
|
<template #append> |
|
|
|
℃ |
|
|
|
</template> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_heater_start"> |
|
|
|
开始加热 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_heater_stop"> |
|
|
|
停止加热 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<el-divider>冷阱</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<el-form> |
|
|
|
<el-form-item label="温度"> |
|
|
|
<el-input v-model.number="debugStore.formData.heatArea.coldTrap.temperature" type="number" placeholder="请输入温度"> |
|
|
|
<template #append> |
|
|
|
℃ |
|
|
|
</template> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_cold_trap_start_refrigeration"> |
|
|
|
启动制冷 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_cold_trap_stop_refrigeration"> |
|
|
|
停止制冷 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_cold_trap_start_recycle"> |
|
|
|
启动循环 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_cold_trap_stop_recycle"> |
|
|
|
停止循环 |
|
|
|
</ft-button> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<!-- <el-divider>拍子</el-divider> --> |
|
|
|
<!-- <div class="card-box"> --> |
|
|
|
<!-- <ft-button type="primary"> --> |
|
|
|
<!-- 启动吸附 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- <ft-button> --> |
|
|
|
<!-- 停止吸附 --> |
|
|
|
<!-- </ft-button> --> |
|
|
|
<!-- </div> --> |
|
|
|
<el-divider>风扇</el-divider> |
|
|
|
<div class="card-box"> |
|
|
|
<ft-button size="small" type="primary" :click-handle="debug_fan_start"> |
|
|
|
打开风扇 |
|
|
|
</ft-button> |
|
|
|
<ft-button size="small" class="stop-button" :click-handle="debug_fan_stop"> |
|
|
|
关闭风扇 |
|
|
|
</ft-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-card> |
|
|
|
</el-col> |
|
|
|