This commit is contained in:
周源 2022-01-07 17:33:05 +08:00
parent 6f69fd6ab2
commit 374ba24bd9
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ public class ApiAuthController extends ApiBaseController {
String secretPhone=CodecUtils.encrypt(phone);
//作为loginName的手机号不能重复
User repeatUser = checkPhoneRepeat(secretPhone);
if (repeatUser == null) render(Ret.fail("账号未注册"));
if (repeatUser == null) render(Ret.fail("该手机号不存在"));
//存储验证码
String code = RandomUtil.randomNumbers(6);