修复bug

This commit is contained in:
liyuhua
2023-08-07 10:28:29 +08:00
parent 948f81dc37
commit 25fe36f693
9 changed files with 22 additions and 18 deletions

View File

@@ -103,7 +103,7 @@
- (void)smsCodeAction {
NSString *phone = self.phoneInputView.inputTextField.text;
if (phone.length != 11 ) {
if (phone.length <= 0) {
[self showErrorToast:YMLocalizedString(@"XPForgetPwdViewController0")];
return;
}