This commit is contained in:
启星
2025-10-30 00:45:15 +08:00
parent acc4cffad2
commit aa356202e2
96 changed files with 881 additions and 303 deletions

View File

@@ -23,6 +23,7 @@
@property (nonatomic,strong)UIImageView *logoImageView;
@property (nonatomic,strong)UILabel *welcomeLabel;
@property (nonatomic,strong)UILabel *subTitleLabel;
@property (nonatomic,strong)UILabel *loginMessageLabel;
@property (nonatomic,strong)QXLoginTextField *accountTextField;
@property (nonatomic,strong)QXLoginTextField *codeTextField;
@property (nonatomic,strong)QXLoginTextField *passwordTextField;
@@ -120,6 +121,12 @@
[self.changeTypeBtn addTarget:self action:@selector(changeAction:) forControlEvents:(UIControlEventTouchUpInside)];
[self.view addSubview:self.changeTypeBtn];
self.loginMessageLabel = [[UILabel alloc] initWithFrame:CGRectMake(self.accountTextField.left+20, self.changeTypeBtn.top, 200, 40)];
self.loginMessageLabel.textColor = QXConfig.textColor;
self.loginMessageLabel.font = [UIFont systemFontOfSize:14];
self.loginMessageLabel.text = @"首次登录即注册";
[self.view addSubview:self.loginMessageLabel];
self.loginBtn = [[UIButton alloc] initWithFrame:CGRectMake(38, self.codeTextField.bottom+55, SCREEN_WIDTH-38*2, 42)];
[self.loginBtn setTitle:QXText(@"验证并登录") forState:(UIControlStateNormal)];
[self.loginBtn setTitleColor:QXConfig.btnTextColor forState:(UIControlStateNormal)];