From 845d152c155da8737875102e37e734e354a79ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=A2=A6=E8=BF=9C?= <1063331231@qq.com> Date: Tue, 15 Jul 2025 20:41:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=A4=BA=E6=96=87=E5=AD=97=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20=E6=8C=87=E4=BB=A4=E5=A2=9E=E5=8A=A0=E8=87=AA?= =?UTF-8?q?=E6=A3=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/libs/utils.ts | 1 + src/views/main/index.vue | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libs/utils.ts b/src/libs/utils.ts index 35c8902..9ba8546 100644 --- a/src/libs/utils.ts +++ b/src/libs/utils.ts @@ -73,6 +73,7 @@ export const cmdNameMap = { nozzle_heat_stop: '停止喷嘴加热', slide_plat_heat_start: '开启载玻台加热', slide_plat_heat_stop: '停止载玻台加热', + move_test: '自检', } export const generateColors = (count: number): string[] => { diff --git a/src/views/main/index.vue b/src/views/main/index.vue index 9a2a15c..ddd27d6 100644 --- a/src/views/main/index.vue +++ b/src/views/main/index.vue @@ -178,7 +178,7 @@ watch(() => isClose.value, async (newValue) => { }) const slideSwitch = async () => { if (systemStore.systemStatus.slidePlatHeating) { - ElMessageBox.confirm('确认关闭喷头加热?', '提示', { + ElMessageBox.confirm('确认关闭载玻台加热?', '提示', { type: 'warning', confirmButtonText: '确定', cancelButtonText: '取消', @@ -193,11 +193,11 @@ const slideSwitch = async () => { cmdId: '', } await sendControl(params) - FtMessage.success('已关闭载台加热') + FtMessage.success('已关闭载玻台加热') }) } else { - FtMessage.warning('载台加热已关闭') + FtMessage.warning('载玻台加热已关闭') } } const nozzleSwitch = async () => {