123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- using LitJson;
- using Newtonsoft.Json.Linq;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.EventSystems;
- using UnityEngine.UI;
- public class LoginManager : MonoSingleton<LoginManager>
- {
- public InputField usernameInput;
- public InputField passwordInput;
- public GameObject usernameError;
- public GameObject passwordError;
- public RawImage passwrodIconBtn;
- public Texture2D passwordIconClose;
- public Texture2D paswrodIconOpen;
- public Button loginBtn;
- public LoginUPError loginUpError;
- private bool isShwoPasword = false;
-
- private void Start()
- {
- passwrodIconBtn.GetComponent<Button>().onClick.AddListener(() =>
- {
- isShwoPasword = !isShwoPasword;
- if(isShwoPasword)
- {
- passwrodIconBtn.texture = paswrodIconOpen;
- passwordInput.contentType = InputField.ContentType.Standard;
- }
- else
- {
- passwrodIconBtn.texture = passwordIconClose;
- passwordInput.contentType = InputField.ContentType.Password;
- }
- });
- UserNameInputStart();
- PassWordInputStart();
- loginBtn.onClick.AddListener(() =>
- {
- bool finish = DetectionInput();
- if (finish == false)
- return;
-
- Login();
- });
- }
- private void UserNameInputStart()
- {
- EventTrigger trigger = usernameInput.gameObject.GetComponent<EventTrigger>();
- if (trigger == null)
- {
-
- trigger = usernameInput.gameObject.AddComponent<EventTrigger>();
- }
-
- EventTrigger.Entry entry = new EventTrigger.Entry();
- entry.eventID = EventTriggerType.PointerClick;
- entry.callback.AddListener((eventData) => {
- if (usernameError.activeSelf)
- {
- usernameInput.text = null;
- usernameInput.textComponent.color = new Color32(50, 50, 50, 255);
- usernameError.SetActive(false);
- }
-
- });
- trigger.triggers.Add(entry);
- }
- private void PassWordInputStart()
- {
- EventTrigger trigger = passwordInput.gameObject.GetComponent<EventTrigger>();
- if (trigger == null)
- {
-
- trigger = passwordInput.gameObject.AddComponent<EventTrigger>();
- }
-
- EventTrigger.Entry entry = new EventTrigger.Entry();
- entry.eventID = EventTriggerType.PointerClick;
- entry.callback.AddListener((eventData) => {
- if (passwordError.activeSelf)
- {
- passwordInput.text = null;
- passwordInput.textComponent.color = new Color32(50, 50, 50, 255);
- passwordError.SetActive(false);
- if (isShwoPasword)
- passwordInput.contentType = InputField.ContentType.Standard;
- else
- passwordInput.contentType = InputField.ContentType.Password;
- }
- });
- trigger.triggers.Add(entry);
- }
- private bool DetectionInput()
- {
- bool finish = true;
- Debug.Log(usernameInput.text);
- Debug.Log(passwordInput.text);
- if (usernameInput.text==""|| usernameInput.text == "请输入用户名")
- {
- finish = false;
- usernameError.gameObject.SetActive(true);
- usernameInput.text = "请输入用户名";
- usernameInput.textComponent.color = new Color32(255, 0, 0, 255);
- }
- if (passwordInput.text==""|| passwordInput.text=="请输入密码")
- {
- finish = false;
- passwordError.gameObject.SetActive(true);
- passwordInput.contentType = InputField.ContentType.Standard;
- passwordInput.text = "请输入密码";
- passwordInput.textComponent.color = new Color32(255, 0, 0, 255);
- }
- return finish;
- }
- private void Login()
- {
- string username = usernameInput.text;
- string password = passwordInput.text;
-
- JsonData data = new JsonData();
- data["account"] = username;
- data["password"] = password;
-
- HttpToolDP.Instance.Post("https://api-fat2.ghz-tech.com" + "/cmcc-endustry/v1/user/login", data.ToJson(), (msg) =>
- {
- Debug.Log("DGJ ===> Login " + msg);
- JObject data = JObject.Parse(msg);
- if (data["code"].ToString() == "200")
- {
-
- }
- else
- {
-
-
-
- }
- if(data["code"].ToString() == "4007")
- {
-
- if (loginUpError.gameObject.activeSelf)
- {
- loginUpError.times = 0;
- }
- else
- {
- loginUpError.gameObject.SetActive(true);
- }
- }
- });
- }
- }
|