注册登录的UI

This commit is contained in:
fengshuo
2024-02-22 19:59:38 +08:00
parent dc62dcf4b8
commit 990dfebf8a
22 changed files with 533 additions and 10 deletions

View File

@@ -274,7 +274,7 @@ class AuthLoginVC: BaseViewController, HiddenNavigationBarProtocol {
private lazy var idLoginView: UIView = {
let view = UIView()
view.backgroundColor = .red
view.backgroundColor = .clear
view.isHidden = true
return view
}()
@@ -324,9 +324,6 @@ class AuthLoginVC: BaseViewController, HiddenNavigationBarProtocol {
button.setTitle("忘记密码?", for: .normal)
button.setTitleColor(ThemeColor(hexStr: "#FFFFFF", alpha: 0.8), for: .normal)
button.titleLabel?.font = UIFont.systemFont(ofSize: 14, weight: .medium)
button.layer.masksToBounds = true
button.layer.cornerRadius = 26
button.isEnabled = false
button.addTarget(self, action: #selector(forgetBtnAction), for: .touchUpInside)
return button
}()
@@ -385,7 +382,7 @@ extension AuthLoginVC {
}
@objc func forgetBtnAction() {
self.navigationController?.pushViewController(AuthForgetVC(), animated: true)
self.navigationController?.pushViewController(AuthFillDataVC(), animated: true)
}
@objc func phoneTextFiledDidChange(_ textField: UITextField) {