From c1be976ad1136d63a42597c6b6fcdc65e4bdabdc Mon Sep 17 00:00:00 2001 From: guoapeng Date: Thu, 24 Jul 2025 15:47:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20dewbug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/debug/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/debug/index.vue b/src/views/debug/index.vue index ff23633..30c4367 100644 --- a/src/views/debug/index.vue +++ b/src/views/debug/index.vue @@ -202,11 +202,11 @@ const commandHandle = async (command: string, params?: unknown) => { el-select(v-model="debugStore.formData.peristalticPumpData.ceramicPump.pumpCode", placeholder="请选择泵") el-option(v-for="item in 2", :key="item", :label="`泵-${item}`", :value="`ceramic_pump_${item}`") el-form-item - ft-button(size="small", type="primary", :click-handle="() => commandHandle('ceramic_pump_move', { ...debugStore.formData.peristalticPumpData.ceramicPump})") - | 移动 + ft-button(size="small", type="primary", :click-handle="() => commandHandle('ceramic_pump_move', { ...debugStore.formData.peristalticPumpData.ceramicPump})") + | 移动 ft-button(size="small", type="primary", :click-handle="() => commandHandle('ceramic_pump_open', { ...debugStore.formData.peristalticPumpData.ceramicPump, direction: 'forward' })") | 正转 - ft-button(size="small", class="stop-button", :click-handle="() => commandHandle('ceramic_pump_close',...debugStore.formData.peristalticPumpData.ceramicPump)") + ft-button(size="small", class="stop-button", :click-handle="() => commandHandle('ceramic_pump_close', debugStore.formData.peristalticPumpData.ceramicPump)") | 停止 ft-button(size="small", type="primary", class="stop-button", :click-handle="() => commandHandle('ceramic_pump_open', { ...debugStore.formData.peristalticPumpData.ceramicPump, direction: 'backward' })") | 反转