| | |
| | | public void LoadPage() |
| | | { |
| | | #region 顶部导航栏 |
| | | if (tempPassword == null|| tempPassword.id==null) |
| | | if (tempPassword == null || tempPassword.id == null) |
| | | { |
| | | tempPassword = new VisitorTempPassword(); |
| | | |
| | |
| | | Width = Application.GetRealWidth(335), |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | TextColor = CSS_Color.FirstLevelTitleColor, |
| | | |
| | | |
| | | PlaceholderText = Language.StringByID(StringId.InputPhoneNumberOfTheVisitor), |
| | | Text = tempPassword.phone, |
| | | IsNumberKeyboardType = true, |
| | | PlaceholderTextColor = CSS_Color.PromptingColor1, |
| | | }; |
| | | bodyScrolView.AddChidren(phoneNumberEditText); |
| | | phoneNumberEditText.Foucs = true; |
| | | phoneNumberEditText.FoucsChanged = (sender, e) => |
| | | { |
| | | if (!phoneNumberEditText.Foucs) |
| | | { |
| | | //手机号码错误提示 |
| | | if (!Utlis.CheckPhoneNumber(phoneNumberEditText.Text.Trim(), "86")) |
| | | { |
| | | var tip_dialog = new Tip() |
| | | { |
| | | Text = Language.StringByID(StringId.PhoneNumberErrorTip), |
| | | CloseTime = 2, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip_dialog.Show(MainPage.BaseView); |
| | | } |
| | | } |
| | | }; |
| | | //phoneNumberEditText.Foucs = true; |
| | | |
| | | // 分割线 |
| | | bodyScrolView.AddChidren(new Button() |
| | | // 分割线 |
| | | bodyScrolView.AddChidren(new Button() |
| | | { |
| | | X = Application.GetRealWidth(20), |
| | | Width = Application.GetRealWidth(335), |
| | |
| | | PlaceholderTextColor = CSS_Color.PromptingColor1, |
| | | }; |
| | | pwdLayout.AddChidren(pwdEditText); |
| | | pwdEditText.FoucsChanged = (sender, e) => |
| | | { |
| | | if (!pwdEditText.Foucs) |
| | | { |
| | | // 6位密码验证 |
| | | var tip_dialog = new Tip() |
| | | { |
| | | Text = Language.StringByID(StringId.Input6_DigitsTemporaryPassword), |
| | | CloseTime = 2, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip_dialog.Show(MainPage.BaseView); |
| | | } |
| | | }; |
| | | |
| | | //随机密码Btn |
| | | randomBtn = new Button() |
| | |
| | | }; |
| | | pwdLayout.AddChidren(randomBtn); |
| | | bodyScrolView.AddChidren(pwdLayout); |
| | | randomBtn.MouseUpEventHandler += (sender, e) => |
| | | { |
| | | string tPwd = getRandomPwd(); |
| | | pwdEditText.Text = tPwd; |
| | | }; |
| | | |
| | | // 分割线 |
| | | bodyScrolView.AddChidren(new Button() |
| | |
| | | }; |
| | | bodyScrolView.AddChidren(visitorVoucherBtn); |
| | | |
| | | // |
| | | Action voucher_action = () => |
| | | { |
| | | if (codeIV.ImageBytes == null) |
| | |
| | | { |
| | | msg = Language.StringByID(StringId.saveFail); |
| | | } |
| | | EmptyTipView tipView = new EmptyTipView(msg, 160); |
| | | tipView.Gravity = Gravity.CenterHorizontal; |
| | | bodyView.AddChidren(tipView); |
| | | |
| | | var tip_dialog = new Tip() |
| | | { |
| | | Text = msg, |
| | | CloseTime = 2, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip_dialog.Show(MainPage.BaseView); |
| | | #endif |
| | | }; |
| | | |
| | | if (tempPassword != null && tempPassword.id != null && tempPassword.id != "") |
| | | { |
| | | pwdEditText.Text = tempPassword.tempPwd; |
| | | pwdEditText.Enable = false; |
| | | phoneNumberEditText.Enable = false; |
| | | randomBtn.Enable = false; |
| | | startTimeBtn.Enable = false; |
| | | endTimeBtn.Enable = false; |
| | | } |
| | | else |
| | | { |
| | | pwdEditText.FoucsChanged = (sender, e) => |
| | | { |
| | | if (!pwdEditText.Foucs) |
| | | { |
| | | // 6位密码验证 |
| | | var tip_dialog = new Tip() |
| | | { |
| | | Text = Language.StringByID(StringId.Input6_DigitsTemporaryPassword), |
| | | CloseTime = 2, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip_dialog.Show(MainPage.BaseView); |
| | | } |
| | | }; |
| | | |
| | | randomBtn.MouseUpEventHandler += (sender, e) => |
| | | { |
| | | string tPwd = getRandomPwd(); |
| | | pwdEditText.Text = tPwd; |
| | | }; |
| | | |
| | | phoneNumberEditText.FoucsChanged = (sender, e) => |
| | | { |
| | | if (!phoneNumberEditText.Foucs) |
| | | { |
| | | //手机号码错误提示 |
| | | if (!Utlis.CheckPhoneNumber(phoneNumberEditText.Text.Trim(), "86")) |
| | | { |
| | | var tip_dialog = new Tip() |
| | | { |
| | | Text = Language.StringByID(StringId.PhoneNumberErrorTip), |
| | | CloseTime = 2, |
| | | Direction = AMPopTipDirection.None |
| | | }; |
| | | tip_dialog.Show(MainPage.BaseView); |
| | | } |
| | | } |
| | | }; |
| | | } |
| | | |
| | | RefreshVisitorVoucherBtn(); |
| | | } |
| | | |