From 23c9d1577fd0c02ca6976c874855ad60268646b8 Mon Sep 17 00:00:00 2001 From: wjc <1243177876@qq.com> Date: 星期一, 25 七月 2022 10:31:16 +0800 Subject: [PATCH] 2022年07月25日10:31:11 --- HDL_ON/UI/UI2/3-Intelligence/Automation/AddLogic.cs | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/AddLogic.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/AddLogic.cs index 1b9285f..05dbc80 100644 --- a/HDL_ON/UI/UI2/3-Intelligence/Automation/AddLogic.cs +++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/AddLogic.cs @@ -310,13 +310,13 @@ LogicMethod.CurrLogicMethod.RemoveAllView(); MainView.MainShow(); } - else if (responsePackNew != null && responsePackNew.Code == "14005") - { - new LogicView.TipPopView().FlashingBox(Language.StringByID(StringId.gatewayNotOnline)); - } else { - new LogicView.TipPopView().FlashingBox(Language.StringByID(StringId.saveFail)); + if (responsePackNew != null) + { + new LogicView.TipPopView().FlashingBox(responsePackNew.message); + } + } }); } @@ -350,14 +350,15 @@ LogicMethod.CurrLogicMethod.RemoveAllView(); MainView.MainShow(); } - else if (responsePackNew != null && responsePackNew.Code == "14005") - { - new LogicView.TipPopView().FlashingBox(Language.StringByID(StringId.gatewayNotOnline)); - } else { - new LogicView.TipPopView().FlashingBox(Language.StringByID(StringId.saveFail)); + if (responsePackNew != null) + { + new LogicView.TipPopView().FlashingBox(responsePackNew.message); + } + } + }); } -- Gitblit v1.8.0