From 6ae83acae578c6746201fbd61074a7b93747ef4f Mon Sep 17 00:00:00 2001
From: 陈嘉乐 <cjl@hdlchina.com.cn>
Date: 星期一, 08 三月 2021 17:47:52 +0800
Subject: [PATCH] 2021-3-8-4

---
 HDL_ON/UI/UI2/4-PersonalCenter/PirDevice/AddButton.cs |   65 ++++++++++++++++----------------
 1 files changed, 32 insertions(+), 33 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/PirDevice/AddButton.cs b/HDL_ON/UI/UI2/4-PersonalCenter/PirDevice/AddButton.cs
index 4f2aec5..28d0f31 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/PirDevice/AddButton.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/PirDevice/AddButton.cs
@@ -125,49 +125,48 @@
                 replication.Show();
 
                 //娣诲姞鏁版嵁瀵硅薄
-                ButtonObj buttonObj = new ButtonObj();
-                buttonObj.Key = "key" + Pir.BuottonList.Count.ToString();
+                Entity.AttributesStatus buttonObj = new Entity.AttributesStatus();
+                buttonObj.key = "key" + Pir.BuottonList.Count.ToString();
                 buttonObj.value = texts;
 
-                PirSend.CodeStudy(buttonObj, (responsePackNew) =>
+                PirSend.CodeStudy(control, buttonObj, (responsePackNew) =>
                 {
-                    ///杩欓噷锛氱洃鍚琈TTP鎺ㄩ�佷笅鏉ヤ富棰橈紝鎵嶇煡閬撴槸鍚︽坊鍔犳垚鍔�
-                    ///
                     //浼戠湢鏄负鏄剧ず寮曞鐣岄潰
-                      System.Threading.Thread.Sleep(5000);
+                    System.Threading.Thread.Sleep(5000);
                     //绉婚櫎娣诲姞鎸夐挳寮曞鐣岄潰
                     replication.RemView();
-                    //if (responsePackNew != null && responsePackNew.Code == "0" && responsePackNew.Data.ToString() != "")
-                    //{
-                    var buttonName = Pir.BuottonList.Find((c) => c.value == buttonObj.value);
-                    if (buttonName == null)
+                    if (responsePackNew != null && responsePackNew.Code == "0" && responsePackNew.Data.ToString() != "")
                     {
-                        //娣诲姞鏁版嵁
-                        Pir.BuottonList.Add(buttonObj);
-                    }
-                    //绉婚櫎娣诲姞鎸夐挳鐣岄潰
-                    this.RemoveFromParent();
-
-                    for (int i = MainPage.BasePageView.ChildrenCount - 1; 0 <= i; i--)
-                    {
-                        var view = MainPage.BasePageView.GetChildren(i);
-                        if (view.GetType() == typeof(AddControl))
+                        var buttonName = Pir.BuottonList.Find((c) => c.value == buttonObj.value);
+                        if (buttonName == null)
                         {
-                            view.RemoveFromParent();
+                            //娣诲姞鏁版嵁
+                            Pir.BuottonList.Add(buttonObj);
                         }
-                        
+                        //绉婚櫎娣诲姞鎸夐挳鐣岄潰
+                        this.RemoveFromParent();
+
+                        for (int i = MainPage.BasePageView.ChildrenCount - 1; 0 <= i; i--)
+                        {
+                            var view = MainPage.BasePageView.GetChildren(i);
+                            if (view.GetType() == typeof(AddControl))
+                            {
+                                view.RemoveFromParent();
+                            }
+
+                        }
+
+                        //鍔犺浇鏁版嵁鐣岄潰
+                        AddControl addControl = new AddControl();
+                        MainPage.BasePageView.AddChidren(addControl);
+                        addControl.Show(control);
+                        MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
                     }
-                  
-                    //鍔犺浇鏁版嵁鐣岄潰
-                    AddControl addControl = new AddControl();
-                    MainPage.BasePageView.AddChidren(addControl);
-                    addControl.Show(control);
-                    MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
-                    //}
-                    //else
-                    //{
-                    //    PirSend.Error(responsePackNew);
-                    //}
+                    else
+                    {
+                        Method method = new Method();
+                        method.ErrorShow(responsePackNew);
+                    }
 
                 });
 

--
Gitblit v1.8.0