From 9dcd17ee7578c5a06bfcd960cc72ea2995716004 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期三, 15 七月 2020 16:43:38 +0800
Subject: [PATCH] 20200715

---
 HDL_ON/UI/UI1-Login/RegisterPageBLL.cs |  155 ++++++++++++++++++++++++++-------------------------
 1 files changed, 78 insertions(+), 77 deletions(-)

diff --git a/HDL_ON/UI/UI1-Login/RegisterPageBLL.cs b/HDL_ON/UI/UI1-Login/RegisterPageBLL.cs
index 859b7d6..c1a2485 100644
--- a/HDL_ON/UI/UI1-Login/RegisterPageBLL.cs
+++ b/HDL_ON/UI/UI1-Login/RegisterPageBLL.cs
@@ -46,7 +46,7 @@
                 }
                 else//閭娉ㄥ唽鑾峰彇楠岃瘉鐮佹寜閽敓鏁堟潯浠�
                 {
-                    if (!mFalg.Success )
+                    if (!mFalg.Success)
                     {
                         btnGetVerificationCode_Mail.IsSelected = false;
                     }
@@ -220,7 +220,7 @@
                     if (etPassword.Text.Length == 0)
                         return;
                     //闇�瑕佽緭鍏�6浣嶄互涓婄殑瀵嗙爜
-                    if (etPassword.Text.Length < 6|| etPassword.Text.Length >13)
+                    if (etPassword.Text.Length < 6 || etPassword.Text.Length > 13)
                     {
                         btnPasswordViewBottomLine.BackgroundColor = CSS_Color.AuxiliaryColor2;
                         btnPasswordViewBottomLine.Height = Application.GetRealHeight(2);
@@ -310,14 +310,16 @@
         /// </summary>
         void LoadEvent_LimtPasswordLength()
         {
-            etPassword.TextChangeEventHandler = (sender, e) => {
-                if(etPassword.Text.Length>16)
+            etPassword.TextChangeEventHandler = (sender, e) =>
+            {
+                if (etPassword.Text.Length > 16)
                 {
                     etPassword.Text = etPassword.Text.Remove(15);
                 }
             };
 
-            etRepeatPassword.TextChangeEventHandler = (sender, e) => {
+            etRepeatPassword.TextChangeEventHandler = (sender, e) =>
+            {
                 if (etRepeatPassword.Text.Length > 16)
                 {
                     etRepeatPassword.Text = etRepeatPassword.Text.Remove(15);
@@ -355,8 +357,8 @@
                {
                    (sender as Button).IsSelected = false;
                    string account = etAccount.Text.Trim();
-                    //鐭俊鍙戦�侀棿闅�60s
-                    int time = 60;
+                   //鐭俊鍙戦�侀棿闅�60s
+                   int time = 60;
                    new Thread(() =>
                    {
                        while (time > 0)
@@ -370,16 +372,16 @@
                        }
                        Application.RunOnMainThread(() =>
                        {
-                            //鍥炲鑾峰彇鐭俊鎸夐挳浜嬩欢
-                            (sender as Button).IsSelected = true;
+                           //鍥炲鑾峰彇鐭俊鎸夐挳浜嬩欢
+                           (sender as Button).IsSelected = true;
                            (sender as Button).TextID = StringId.GetVerificationCode;
                        });
                    })
                    { IsBackground = true }.Start();
                    new Thread(() =>
                    {
-                        //鑾峰彇楠岃瘉鐮�
-                        var result = pm.GetPhoneRegisterVerCode(account);
+                       //鑾峰彇楠岃瘉鐮�
+                       var result = pm.GetRegisterVerCode(account);
                        if (result.StateCode.ToUpper() == "SUCCESS")
                        {
                        }
@@ -448,73 +450,72 @@
             string entryPassword = etRepeatPassword.Text.Trim();
             string verCode = etVerificationCode.Text.Trim();
             return new Thread(() =>
-             {
-                 try
-                 {
-                     //鏍¢獙楠岃瘉鐮�/娉ㄥ唽璐﹀彿
-                     var validateSmsResult = pm.ValidataCodeAndRegister(account, password, entryPassword, verCode, 86);
-                     //楠岃瘉鐮佹牎楠屾垚鍔�
-                     if (validateSmsResult.StateCode.ToUpper() == "SUCCESS")
-                     {
-                         //娉ㄥ唽鎴愬姛
-                         //鎵ц鍥炶皟浜嬩欢
-                         //callbackAction?.Invoke(account);
-                         Application.RunOnMainThread(() =>
-                         {
+            {
+                try
+                {
+                    //鏍¢獙楠岃瘉鐮�/娉ㄥ唽璐﹀彿
+                    var validateSmsResult = pm.ValidataCodeAndRegister(account, password, entryPassword, verCode, 86);
+                    //楠岃瘉鐮佹牎楠屾垚鍔�
+                    if (validateSmsResult.StateCode.ToUpper() == "SUCCESS")
+                    {
+                        //娉ㄥ唽鎴愬姛
+                        //鎵ц鍥炶皟浜嬩欢
+                        //callbackAction?.Invoke(account);
+                        Application.RunOnMainThread(() =>
+                        {
                             this.Close();
-                             LoadEvent_AutoLogin(account, password);
-                         });
-                     }
-                     else//娉ㄥ唽澶辫触
-                     {
-                         string erorrInfo = "";
-                         switch (validateSmsResult.StateCode)
-                         {
-                             case "Exist":
-                                 erorrInfo = Language.StringByID(StringId.AccountAlreadyExists);
-                                 break;
-                             case "PwdNoConfirm":
-                                 erorrInfo = Language.StringByID(StringId.IncorrectRepeatPassword);
-                                 break;
-                             case "ValidCodeAndPhoneNoEqual":
-                                 erorrInfo = Language.StringByID(StringId.VerificationCodeWrong);
-                                 break;
-                             case "NoRecord":
-                                 erorrInfo = Language.StringByID(StringId.PlsGetTheVerificationCode);
-                                 Application.RunOnMainThread(() =>
-                                 {
-                                     btnVerificationCodeViewBottomLine.BackgroundColor = CSS_Color.AuxiliaryColor2;
-                                     btnVerificationCodeViewBottomLine.Height = Application.GetRealHeight(2);
-                                 });
-                                 break;
-                             default:
-                                 erorrInfo = Language.StringByID(StringId.RegistrationFailedPleaseTryAgain);
-                                 break;
-                         }
-                         Application.RunOnMainThread(() =>
-                         {
-                             new Tip()
-                             {
-                                 CloseTime = 3,
-                                 Direction = AMPopTipDirection.None,
-                                 Text = erorrInfo,
-                             }.Show(bodyView);
-                         });
-                     }
-                 }
-                 catch (Exception ex)
-                 {
-                     MainPage.Log("Exception 1 : " + ex.Message);
-                 }
-                 finally
-                 {
-                     Application.RunOnMainThread(() =>
-                     {
-                         waitPage.Hide();
-                     });
-                 }
-             });
+                            LoadEvent_AutoLogin(account, password);
+                        });
+                    }
+                    else//娉ㄥ唽澶辫触
+                    {
+                        string erorrInfo = "";
+                        switch (validateSmsResult.StateCode)
+                        {
+                            case "Exist":
+                                erorrInfo = Language.StringByID(StringId.AccountAlreadyExists);
+                                break;
+                            case "PwdNoConfirm":
+                                erorrInfo = Language.StringByID(StringId.IncorrectRepeatPassword);
+                                break;
+                            case "ValidCodeAndPhoneNoEqual":
+                                erorrInfo = Language.StringByID(StringId.VerificationCodeWrong);
+                                break;
+                            case "NoRecord":
+                                erorrInfo = Language.StringByID(StringId.PlsGetTheVerificationCode);
+                                Application.RunOnMainThread(() =>
+                                {
+                                    btnVerificationCodeViewBottomLine.BackgroundColor = CSS_Color.AuxiliaryColor2;
+                                    btnVerificationCodeViewBottomLine.Height = Application.GetRealHeight(2);
+                                });
+                                break;
+                            default:
+                                erorrInfo = Language.StringByID(StringId.RegistrationFailedPleaseTryAgain);
+                                break;
+                        }
+                        Application.RunOnMainThread(() =>
+                        {
+                            new Tip()
+                            {
+                                CloseTime = 3,
+                                Direction = AMPopTipDirection.None,
+                                Text = erorrInfo,
+                            }.Show(bodyView);
+                        });
+                    }
+                }
+                catch (Exception ex)
+                {
+                    MainPage.Log("Exception 1 : " + ex.Message);
+                }
+                finally
+                {
+                    Application.RunOnMainThread(() =>
+                    {
+                        waitPage.Hide();
+                    });
+                }
+            });
         }
-
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0