BaseLogin_VC.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // BaseLogin_VC.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2018/12/29.
  6. // Copyright © 2018年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseLogin_VC : UIViewController
  10. /** 背景图 */
  11. @property (nonatomic,strong) UIImageView *bgImageView;
  12. /** 内容视图*/
  13. @property (nonatomic,strong) UIView *containerView;
  14. /** logo */
  15. @property (nonatomic,strong) UIImageView *logoImageView;
  16. /** 账号 */
  17. @property (nonatomic,strong) UITextField *accountTF;
  18. /** 手机号 */
  19. @property (nonatomic,strong) UITextField *phoneTf;
  20. /** 验证码 */
  21. @property (nonatomic,strong)UITextField *smsCodeTF;
  22. /** 密码 */
  23. @property (nonatomic,strong) UITextField *passwordTF;
  24. /** 确认密码 */
  25. @property (nonatomic,strong)UITextField *confirmPasswordTf;
  26. /** 登录按钮 */
  27. @property (nonatomic,strong) UIButton *loginButton;
  28. /** 注册按钮 */
  29. @property (nonatomic,strong) UIButton *registButton;
  30. /** 重置密码 */
  31. @property (nonatomic,strong) UIButton *resetPasswordBtn;
  32. /** 记住账户 */
  33. @property (nonatomic,strong) UIButton *rememberBtn;
  34. /** 返回按钮 */
  35. @property (nonatomic,strong) UIButton *backBtn;
  36. /** 返回label */
  37. @property (nonatomic,strong) UILabel *backLabel;
  38. @end