| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // MerchantAdminSetupView.h
- // merchant
- //
- // Created by qitewei on 2025/8/14.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MerchantBaseEnrollContentView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MerchantAdminSetupView : MerchantBaseEnrollContentView
- // 姓名
- @property (nonatomic, strong) UILabel *nameLabel;
- @property (nonatomic, strong) UITextField *nameTextField;
- // 电话号码
- @property (nonatomic, strong) UILabel *phoneLabel;
- @property (nonatomic, strong) UITextField *phoneTextField;
- @property (nonatomic, strong) UIView *phoneWarningView;
- @property (nonatomic, strong) UIImageView *phoneWarningIcon;
- @property (nonatomic, strong) UILabel *phoneWarningLabel;
- // 验证码
- @property (nonatomic, strong) UILabel *verifyCodeLabel;
- @property (nonatomic, strong) UIView *verifyCodeContainerView;
- @property (nonatomic, strong) UITextField *verifyCodeTextField;
- @property (nonatomic, strong) UIButton *getVerifyCodeButton;
- // PC端商家后台登录密码
- @property (nonatomic, strong) UILabel *passwordSectionLabel;
- @property (nonatomic, strong) UIView *passwordWarningView;
- @property (nonatomic, strong) UIImageView *passwordWarningIcon;
- @property (nonatomic, strong) UILabel *passwordWarningLabel;
- // 密码
- @property (nonatomic, strong) UILabel *passwordLabel;
- @property (nonatomic, strong) UIView *passwordContainerView;
- @property (nonatomic, strong) UITextField *passwordTextField;
- @property (nonatomic, strong) UIButton *passwordEyeButton;
- // 确认密码
- @property (nonatomic, strong) UILabel *confirmPasswordLabel;
- @property (nonatomic, strong) UIView *confirmPasswordContainerView;
- @property (nonatomic, strong) UITextField *confirmPasswordTextField;
- @property (nonatomic, strong) UIButton *confirmPasswordEyeButton;
- @end
- NS_ASSUME_NONNULL_END
|