From f1c3921b08bb22ac6f5db22d620e01d7e8e5c49f Mon Sep 17 00:00:00 2001
From: WJC <wjc@hdlchina.com.cn>
Date: 星期一, 30 十二月 2019 13:32:33 +0800
Subject: [PATCH] 2019-12-30-1

---
 ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs |   51 +++++++++++++++++++++++----------------------------
 1 files changed, 23 insertions(+), 28 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs b/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
index f21a869..a79dba4 100755
--- a/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
+++ b/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
@@ -324,7 +324,7 @@
             }
             else
             {
-                Login(phoneRow.AccountET.Text.Trim(), pwdRow.PasswrodET.Text.Trim());
+                Login(emailRow.AccountET.Text.Trim(), pwdRow.PasswrodET.Text.Trim());
             }
 
         }
@@ -372,21 +372,15 @@
 
                         new System.Threading.Thread(async () =>
                         {
-                            //鍚姩ZigBee
-                            ZigBee.Common.Application.Init();
                             //瀛樺偍鏁版嵁
                             var responseDataObj = Newtonsoft.Json.JsonConvert.DeserializeObject<Shared.Common.ResponseEntity.UserLoginRes>(revertObj.ResponseData.ToString());
                             var revertData = responseDataObj;
                             Config.ReFresh();
                             Config.Instance.Account = revertData.Account;
-                            Config.Instance.MqttKey = revertData.MqttKey;
                             Config.Instance.Password = passwordStr;
                             Config.Instance.MD5PWD = revertData.MD5PWD;
                             Config.Instance.Guid = revertData.Guid;
                             Config.Instance.LoginDateTime = DateTime.Now;
-                            Config.Instance.ConnectZigbeeMqttBrokerPwd = revertData.ConnectZigbeeMqttBrokerPwd;
-                            Config.Instance.ConnectZigbeeMqttClientId = revertData.ConnectZigbeeMqttClientId;
-                            Config.Instance.ZigbeeMqttBrokerLoadSubDomain = revertData.ZigbeeMqttBrokerLoadSubDomain;
                             if (Config.Instance.AccountList.Find((obj) => obj == revertData.Account) == null)
                             {
                                 Config.Instance.AccountList.Add(revertData.Account);
@@ -394,7 +388,9 @@
                             Config.Instance.Save();
 
                             var resultRegID = await Shared.Common.CommonPage.Instance.PushRegID();
-                            var homes = await House.GetHomeLists();
+                            var homes = await House.GetHomeLists();
+                            //鍚姩ZigBee
+                            ZigBee.Common.Application.Init();
                             //鍒锋柊涓汉涓績鐨勫唴瀛樺強绾跨▼
                             await UserCenter.UserCenterLogic.InitUserCenterMenmoryAndThread();
                             Shared.Common.Room.InitAllRoom();
@@ -509,12 +505,15 @@
                                 var re = await isBindAuthAsync(authStr);
                                 if (re)
                                 {
-                                    //鐩存帴鐧诲綍
-                                    HomePage.Instance.ShowLoginLoadView();
-                                    //鍚姩ZigBee
-                                    ZigBee.Common.Application.Init();
+                                    Application.RunOnMainThread(() =>
+                                    {
+                                        //鐩存帴鐧诲綍
+                                        HomePage.Instance.ShowLoginLoadView();
+                                    });
                                     var resultRegID = await Shared.Common.CommonPage.Instance.PushRegID();
-                                    var homes = await House.GetHomeLists();
+                                    var homes = await House.GetHomeLists();
+                                    //鍚姩ZigBee
+                                    ZigBee.Common.Application.Init();
                                     //鍒锋柊涓汉涓績鐨勫唴瀛樺強绾跨▼
                                     await UserCenter.UserCenterLogic.InitUserCenterMenmoryAndThread();
                                     Shared.Common.Room.InitAllRoom();
@@ -539,14 +538,14 @@
                             })
                             { IsBackground = true }.Start();
                         }
-                    };
-                //}
-            //};
+                    };
+            //}
+            //};
 #endif
-
+
 #if iOS
-            GateWay.Ios.AppDelegate.WXLogin();
-            GateWay.Ios.AppDelegate.RespAction = (authStr) =>
+            Home.IOS.AppDelegate.WXLogin();
+            Home.IOS.AppDelegate.RespAction = (authStr) =>
             {
                 if (authStr == null)
                 {
@@ -564,10 +563,10 @@
                             //this.RemoveFromParent();
 
                             //UserPage.Instance.Fresh();
-                            //鍚姩ZigBee
-                            ZigBee.Common.Application.Init();
                             var resultRegID = await Shared.Common.CommonPage.Instance.PushRegID();
                             var homes = await House.GetHomeLists();
+                            //鍚姩ZigBee
+                            ZigBee.Common.Application.Init();
                             //鍒锋柊涓汉涓績鐨勫唴瀛樺強绾跨▼
                             await UserCenter.UserCenterLogic.InitUserCenterMenmoryAndThread();
                             Shared.Common.Room.InitAllRoom();
@@ -593,9 +592,9 @@
                 }
             };
 #endif
-
-
-
+
+
+
         }
 
         /// <summary>
@@ -636,11 +635,7 @@
                 Config.Instance.Account = revertData.Account;
                 Config.Instance.MD5PWD = revertData.MD5PWD;
                 Config.Instance.Guid = revertData.Guid;
-                Config.Instance.MqttKey = revertData.MqttKey;
                 Config.Instance.LoginDateTime = DateTime.Now;
-                Config.Instance.ConnectZigbeeMqttBrokerPwd = revertData.ConnectZigbeeMqttBrokerPwd;
-                Config.Instance.ConnectZigbeeMqttClientId = revertData.ConnectZigbeeMqttClientId;
-                Config.Instance.ZigbeeMqttBrokerLoadSubDomain = revertData.ZigbeeMqttBrokerLoadSubDomain;
                 if (Config.Instance.AccountList.Find((obj) => obj == revertData.Account) == null)
                 {
                     Config.Instance.AccountList.Add(revertData.Account);

--
Gitblit v1.8.0