|
|
@@ -105,9 +105,6 @@ public class HRB_MeView : JCUnityLib.ViewBase, MenuBackInterface
|
|
|
if (i == 1) {
|
|
|
inputField.text = HRB_UserInfo.current.nickname;
|
|
|
}
|
|
|
- else if (i == 2) {
|
|
|
- inputField.text = HRB_UserInfo.current.phone;
|
|
|
- }
|
|
|
else if (i == 4) {
|
|
|
inputField.text = HRB_UserInfo.current.birthday;
|
|
|
}
|
|
|
@@ -231,7 +228,6 @@ public class HRB_MeView : JCUnityLib.ViewBase, MenuBackInterface
|
|
|
#region UserInfo关联属性
|
|
|
public string nickname;
|
|
|
public int gender;
|
|
|
- public string phone;
|
|
|
public string birthday;
|
|
|
public string country;
|
|
|
public string state;
|
|
|
@@ -253,7 +249,6 @@ public class HRB_MeView : JCUnityLib.ViewBase, MenuBackInterface
|
|
|
}
|
|
|
//缓存读取到的值
|
|
|
this.nickname = texts[1];
|
|
|
- this.phone = texts[2];
|
|
|
this.gender = int.Parse(texts[3]);
|
|
|
this.birthday = texts[4];
|
|
|
this.country = m_context.countryCode;
|
|
|
@@ -267,7 +262,6 @@ public class HRB_MeView : JCUnityLib.ViewBase, MenuBackInterface
|
|
|
if (interceptor.Invoke()) return false;
|
|
|
}
|
|
|
HRB_UserInfo.current.nickname = this.nickname;
|
|
|
- HRB_UserInfo.current.phone = this.phone;
|
|
|
HRB_UserInfo.current.gender = this.gender;
|
|
|
HRB_UserInfo.current.birthday = this.birthday;
|
|
|
HRB_UserInfo.current.country = this.country;
|
|
|
@@ -279,7 +273,6 @@ public class HRB_MeView : JCUnityLib.ViewBase, MenuBackInterface
|
|
|
private bool IsEqualOrigin() {
|
|
|
return
|
|
|
HRB_UserInfo.current.nickname == this.nickname &&
|
|
|
- HRB_UserInfo.current.phone == this.phone &&
|
|
|
HRB_UserInfo.current.gender == this.gender &&
|
|
|
HRB_UserInfo.current.birthday == this.birthday &&
|
|
|
HRB_UserInfo.current.country == this.country &&
|