From 162bde9fb1fe2a60fa9d2022b8e9f65a390c8279 Mon Sep 17 00:00:00 2001 From: jingna <1264204245@qq.com> Date: Fri, 26 Jun 2026 19:01:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=9A=E8=AE=AF=E8=AE=BE?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/communicationSetting/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/communicationSetting/index.vue b/frontend/src/views/communicationSetting/index.vue index 293abea..3bf1c7c 100644 --- a/frontend/src/views/communicationSetting/index.vue +++ b/frontend/src/views/communicationSetting/index.vue @@ -123,7 +123,7 @@ const handlePasswordConfirm = async () => { try { if (currentType.value === 'net') { const res = await saveDeviceNet([formData.value, formDataRight.value]) - if (res.code === 200) { + if (res.send_status === '成功') { ElMessage({ type: 'success', message: '网卡配置保存成功', @@ -136,7 +136,7 @@ const handlePasswordConfirm = async () => { } } else { const res = await saveDeviceUart([formData2.value, formData2Right.value]) - if (res.code === 200) { + if (res.send_status === '成功') { ElMessage({ type: 'success', message: '串口配置保存成功',