MerchantAdminSetupView.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // MerchantAdminSetupView.h
  3. // merchant
  4. //
  5. // Created by qitewei on 2025/8/14.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MerchantBaseEnrollContentView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MerchantAdminSetupView : MerchantBaseEnrollContentView
  12. // 姓名
  13. @property (nonatomic, strong) UILabel *nameLabel;
  14. @property (nonatomic, strong) UITextField *nameTextField;
  15. // 电话号码
  16. @property (nonatomic, strong) UILabel *phoneLabel;
  17. @property (nonatomic, strong) UITextField *phoneTextField;
  18. @property (nonatomic, strong) UIView *phoneWarningView;
  19. @property (nonatomic, strong) UIImageView *phoneWarningIcon;
  20. @property (nonatomic, strong) UILabel *phoneWarningLabel;
  21. // 验证码
  22. @property (nonatomic, strong) UILabel *verifyCodeLabel;
  23. @property (nonatomic, strong) UIView *verifyCodeContainerView;
  24. @property (nonatomic, strong) UITextField *verifyCodeTextField;
  25. @property (nonatomic, strong) UIButton *getVerifyCodeButton;
  26. // PC端商家后台登录密码
  27. @property (nonatomic, strong) UILabel *passwordSectionLabel;
  28. @property (nonatomic, strong) UIView *passwordWarningView;
  29. @property (nonatomic, strong) UIImageView *passwordWarningIcon;
  30. @property (nonatomic, strong) UILabel *passwordWarningLabel;
  31. // 密码
  32. @property (nonatomic, strong) UILabel *passwordLabel;
  33. @property (nonatomic, strong) UIView *passwordContainerView;
  34. @property (nonatomic, strong) UITextField *passwordTextField;
  35. @property (nonatomic, strong) UIButton *passwordEyeButton;
  36. // 确认密码
  37. @property (nonatomic, strong) UILabel *confirmPasswordLabel;
  38. @property (nonatomic, strong) UIView *confirmPasswordContainerView;
  39. @property (nonatomic, strong) UITextField *confirmPasswordTextField;
  40. @property (nonatomic, strong) UIButton *confirmPasswordEyeButton;
  41. @end
  42. NS_ASSUME_NONNULL_END