LoginManager.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using LitJson;
  2. using Newtonsoft.Json.Linq;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. using UnityEngine.EventSystems;
  7. using UnityEngine.UI;
  8. public class LoginManager : MonoSingleton<LoginManager>
  9. {
  10. public InputField usernameInput;
  11. public InputField passwordInput;
  12. public GameObject usernameError;
  13. public GameObject passwordError;
  14. public RawImage passwrodIconBtn;
  15. public Texture2D passwordIconClose;
  16. public Texture2D paswrodIconOpen;
  17. public Button loginBtn;
  18. public LoginUPError loginUpError;
  19. private bool isShwoPasword = false;
  20. private void Start()
  21. {
  22. passwrodIconBtn.GetComponent<Button>().onClick.AddListener(() =>
  23. {
  24. isShwoPasword = !isShwoPasword;
  25. if(isShwoPasword)
  26. {
  27. passwrodIconBtn.texture = paswrodIconOpen;
  28. passwordInput.contentType = InputField.ContentType.Standard;
  29. }
  30. else
  31. {
  32. passwrodIconBtn.texture = passwordIconClose;
  33. passwordInput.contentType = InputField.ContentType.Password;
  34. }
  35. });
  36. UserNameInputStart();
  37. PassWordInputStart();
  38. loginBtn.onClick.AddListener(() =>
  39. {
  40. bool finish = DetectionInput();
  41. if (finish == false)
  42. return;
  43. // 登录
  44. Login();
  45. });
  46. }
  47. private void UserNameInputStart()
  48. {
  49. EventTrigger trigger = usernameInput.gameObject.GetComponent<EventTrigger>();
  50. if (trigger == null)
  51. {
  52. // 如果没有 EventTrigger 组件,添加一个
  53. trigger = usernameInput.gameObject.AddComponent<EventTrigger>();
  54. }
  55. // 添加 PointerEnter 事件监听
  56. EventTrigger.Entry entry = new EventTrigger.Entry();
  57. entry.eventID = EventTriggerType.PointerClick;
  58. entry.callback.AddListener((eventData) => {
  59. if (usernameError.activeSelf)
  60. {
  61. usernameInput.text = null;
  62. usernameInput.textComponent.color = new Color32(50, 50, 50, 255);
  63. usernameError.SetActive(false);
  64. }
  65. });
  66. trigger.triggers.Add(entry);
  67. }
  68. private void PassWordInputStart()
  69. {
  70. EventTrigger trigger = passwordInput.gameObject.GetComponent<EventTrigger>();
  71. if (trigger == null)
  72. {
  73. // 如果没有 EventTrigger 组件,添加一个
  74. trigger = passwordInput.gameObject.AddComponent<EventTrigger>();
  75. }
  76. // 添加 PointerEnter 事件监听
  77. EventTrigger.Entry entry = new EventTrigger.Entry();
  78. entry.eventID = EventTriggerType.PointerClick;
  79. entry.callback.AddListener((eventData) => {
  80. if (passwordError.activeSelf)
  81. {
  82. passwordInput.text = null;
  83. passwordInput.textComponent.color = new Color32(50, 50, 50, 255);
  84. passwordError.SetActive(false);
  85. if (isShwoPasword)
  86. passwordInput.contentType = InputField.ContentType.Standard;
  87. else
  88. passwordInput.contentType = InputField.ContentType.Password;
  89. }
  90. });
  91. trigger.triggers.Add(entry);
  92. }
  93. private bool DetectionInput()
  94. {
  95. bool finish = true;
  96. Debug.Log(usernameInput.text);
  97. Debug.Log(passwordInput.text);
  98. if (usernameInput.text==""|| usernameInput.text == "请输入用户名")
  99. {
  100. finish = false;
  101. usernameError.gameObject.SetActive(true);
  102. usernameInput.text = "请输入用户名";
  103. usernameInput.textComponent.color = new Color32(255, 0, 0, 255);
  104. }
  105. if (passwordInput.text==""|| passwordInput.text=="请输入密码")
  106. {
  107. finish = false;
  108. passwordError.gameObject.SetActive(true);
  109. passwordInput.contentType = InputField.ContentType.Standard;
  110. passwordInput.text = "请输入密码";
  111. passwordInput.textComponent.color = new Color32(255, 0, 0, 255);
  112. }
  113. return finish;
  114. }
  115. private void Login()
  116. {
  117. string username = usernameInput.text;
  118. string password = passwordInput.text;
  119. // 密码是否符合基本要求
  120. JsonData data = new JsonData();
  121. data["account"] = username;
  122. data["password"] = password;
  123. // 登录请求
  124. HttpToolDP.Instance.Post("https://api-fat2.ghz-tech.com" + "/cmcc-endustry/v1/user/login", data.ToJson(), (msg) =>
  125. {
  126. Debug.Log("DGJ ===> Login " + msg);
  127. JObject data = JObject.Parse(msg);
  128. if (data["code"].ToString() == "200")
  129. {
  130. // 登录成功
  131. }
  132. else
  133. {
  134. // 根据报错做对应显示
  135. // 已经登录
  136. }
  137. if(data["code"].ToString() == "4007")
  138. {
  139. // 账号或密码错误
  140. if (loginUpError.gameObject.activeSelf)
  141. {
  142. loginUpError.times = 0;
  143. }
  144. else
  145. {
  146. loginUpError.gameObject.SetActive(true);
  147. }
  148. }
  149. });
  150. }
  151. }