From a2927467ebfa938a420f392deb6882b35570fd33 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期二, 01 十二月 2020 16:48:06 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/CJL-NEW'
---
HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/ChangeBindAccountPage.cs | 30 ++++++++++++++++--------------
1 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/ChangeBindAccountPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/ChangeBindAccountPage.cs
index 44b9478..1faeae0 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/ChangeBindAccountPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/ChangeBindAccountPage.cs
@@ -18,7 +18,17 @@
/// <summary>
///
/// </summary>
+ Button btnTitle;
+ /// <summary>
+ ///
+ /// </summary>
+ Button btnContent;
+
+ /// <summary>
+ ///
+ /// </summary>
Action<string> action;
+
/// <summary>
/// 鎿嶄綔鐩爣绫诲瀷 1:閭锛�2:鎵嬫満
/// </summary>
@@ -26,16 +36,8 @@
/// <summary>
/// 鏄惁涓鸿В缁戦獙璇�
/// </summary>
- public bool isUnbind;
-
- /// <summary>
- ///
- /// </summary>
- Button btnTitle;
- /// <summary>
- ///
- /// </summary>
- Button btnContent;
+ public bool IsUnbind;
+
/// <summary>
/// ChangeBindAccountPage
@@ -101,7 +103,7 @@
Y = Application.GetRealHeight(213),
Gravity = Gravity.CenterHorizontal,
Width = Application.GetRealWidth(220),
- Height = Application.GetRealHeight(44),
+ Height = Application.GetRealWidth(44),
BackgroundColor = CSS_Color.MainColor,
TextAlignment = TextAlignment.Center,
TextColor = CSS_Color.MainBackgroundColor,
@@ -148,12 +150,12 @@
{
if (optionType == 2)
{
- btnTitle.TextID = isUnbind ? StringId.CurPhone : StringId.PhoneNumberVerification;
+ btnTitle.TextID = IsUnbind ? StringId.CurPhone : StringId.PhoneNumberVerification;
btnContent.Text = UserInfo.Current.userMobileInfo;
}
else
{
- btnTitle.TextID = isUnbind ? StringId.CurrentEmail : StringId.EmailVerification;
+ btnTitle.TextID = IsUnbind ? StringId.CurrentEmail : StringId.EmailVerification;
btnContent.Text = UserInfo.Current.userEmailInfo;
}
}
@@ -232,7 +234,7 @@
{
button.BackgroundColor = CSS_Color.PromptingColor1;
var vcp = new ChangeBindVerificationCodePage();
- vcp.isUnbind = isUnbind;
+ vcp.IsUnbind = IsUnbind;
MainPage.BasePageView.AddChidren(vcp);
vcp.LoadPage(action, titleId, optionType, time);
MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
--
Gitblit v1.8.0