From c17871cbf0511baadad171df4276bf50a442f3fe Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期四, 30 六月 2022 13:35:38 +0800
Subject: [PATCH] 自研可视对讲优化
---
HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs | 111 ++++++++++++++++++++++++++++++++-----------------------
1 files changed, 65 insertions(+), 46 deletions(-)
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs
index fb79e54..aac3c30 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/Visitor/VisitorQRCodePage.cs
@@ -46,7 +46,7 @@
public void LoadPage()
{
#region 椤堕儴瀵艰埅鏍�
- if (tempPassword == null|| tempPassword.id==null)
+ if (tempPassword == null || tempPassword.id == null)
{
tempPassword = new VisitorTempPassword();
@@ -112,34 +112,17 @@
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),
@@ -177,20 +160,6 @@
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()
@@ -204,11 +173,6 @@
};
pwdLayout.AddChidren(randomBtn);
bodyScrolView.AddChidren(pwdLayout);
- randomBtn.MouseUpEventHandler += (sender, e) =>
- {
- string tPwd = getRandomPwd();
- pwdEditText.Text = tPwd;
- };
// 鍒嗗壊绾�
bodyScrolView.AddChidren(new Button()
@@ -225,7 +189,6 @@
{
Height = Application.GetRealHeight(40),
Y = Application.GetRealWidth(10),
- BackgroundColor = CSS_Color.BackgroundColor,
};
startLayout.AddChidren(new Button()
@@ -413,7 +376,6 @@
};
bodyScrolView.AddChidren(visitorVoucherBtn);
- //
Action voucher_action = () =>
{
if (codeIV.ImageBytes == null)
@@ -516,12 +478,69 @@
{
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 = "";
+ pwdEditText.PlaceholderText = Language.StringByID(StringId.TemporaryPasswordInvalid);
+ 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();
}
--
Gitblit v1.8.0