From 2df455b667322ab028e21fb2769e2b157c75f6a5 Mon Sep 17 00:00:00 2001 From: caozehui <2427765068@qq.com> Date: Thu, 24 Apr 2025 10:18:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E6=80=81=E8=AE=BE=E5=AE=9A=E5=B9=85?= =?UTF-8?q?=E5=80=BC=E6=9C=80=E5=A4=A7=E4=B8=BA180%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../machine/testScript/components/testScriptDipTab.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/machine/testScript/components/testScriptDipTab.vue b/frontend/src/views/machine/testScript/components/testScriptDipTab.vue index 5c47b86..4ea5d04 100644 --- a/frontend/src/views/machine/testScript/components/testScriptDipTab.vue +++ b/frontend/src/views/machine/testScript/components/testScriptDipTab.vue @@ -69,9 +69,9 @@ const handleInput = value => { if (value < 0) { ElMessage.warning("设定幅度不能小于0%") props.childForm[0].dipData.ftransValue = 0 - } else if (value > 140) { - ElMessage.warning("设定幅度不能大于140%") - props.childForm[0].dipData.ftransValue = 140 + } else if (value > 180) { + ElMessage.warning("设定幅度不能大于180%") + props.childForm[0].dipData.ftransValue = 180 } }