From 5bfb959c47017825c8cf7dc8570c55b04dab694c Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期三, 09 六月 2021 16:42:11 +0800 Subject: [PATCH] Merge branch 'dev-tzy' into wxr6 --- HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/AddDevciePage.cs | 12 +++--------- 1 files changed, 3 insertions(+), 9 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/AddDevciePage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/AddDevciePage.cs index 00b0713..c7da6e2 100644 --- a/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/AddDevciePage.cs +++ b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/AddDevciePage.cs @@ -49,9 +49,10 @@ new System.Threading.Thread(() => { try { - var pm = new HttpServerRequest(); + var pm = new DAL.Server.HttpServerRequest(); + //var result = pm.Get3tyBindBrandList var pack = pm.Get3TyBrandDeviceList(brand.productPlatform, brand.productBrand); - if (pack.Code == StateCode.SUCCESS) + if (pack.Code == DAL.Server.StateCode.SUCCESS) { var revData = Newtonsoft.Json.JsonConvert.DeserializeObject<List<IntegratedBrandDevice>>(pack.Data.ToString()); Application.RunOnMainThread(() => @@ -145,13 +146,6 @@ form.AddDeviceEvent = (functionObj) => { refreshView.BeginHeaderRefreshing(); }; - break; - case SPK.SenesorMegahealth: - var form1 = new AddSenesorMegahealthDirection1Page(); - form1.AddForm(device); - form1.AddDeviceEvent = (functionObj) => { - refreshView.BeginHeaderRefreshing(); - }; break; } }; -- Gitblit v1.8.0