old mode 100755
new mode 100644
| | |
| | | /// 账号 |
| | | /// </summary> |
| | | private string account; |
| | | /// <summary> |
| | | /// OpenID |
| | | /// </summary> |
| | | public string OpenID; |
| | | |
| | | #endregion |
| | | |
| | | #region ◆ 构造方法_________________________ |
| | | public AccountRegister() |
| | | { |
| | | CommonPage.Instance.IsDrawerLockMode = true; |
| | | BackgroundColor = ZigbeeColor.Current.GXCBackgroundColor; |
| | | Tag = "Register"; |
| | | } |
| | |
| | | private void AddPhoneOrEmailFL(FrameLayout accountCodeFrameLayout, string phoneOrEmail) |
| | | { |
| | | accountCodeFrameLayout.RemoveAll(); |
| | | |
| | | account = string.Empty; |
| | | if (phoneOrEmail == "Phone") |
| | | { |
| | | phoneRow = new PhoneRowForm(); |
| | |
| | | { |
| | | var registerSuccess = new Account.AccountRegisterSuccess(); |
| | | CommonPage.Instance.AddChidren(registerSuccess); |
| | | registerSuccess.Show(account, pwdRow.PasswrodET.Text.Trim()); |
| | | registerSuccess.Show(account, pwdRow.PasswrodET.Text.Trim(), OpenID); |
| | | } |
| | | else if (stateCodeStr == "EXIST") |
| | | { |