ZQN
2024-06-22 30a8692a3aa23118d7c7c33c6d84327e5e199612
project-admin/src/main/java/com/project/admin/controller/system/SysLoginController.java
@@ -53,7 +53,7 @@
    @RepeatSubmit
    public AjaxResult getVerifyCode(@RequestParam("phone") String phone)
    {
        return AjaxResult.success(loginService.getVerifyCode(phone));
        return AjaxResult.success(loginService.getVerifyCode(phone)?"发送成功":"发送失败");
    }
    @ApiOperation("新注册获取验证码")
@@ -61,7 +61,7 @@
    @RepeatSubmit
    public AjaxResult getVerifyCodeNew(@RequestParam("phone") String phone)
    {
        return AjaxResult.success(loginService.getVerifyCodeNew(phone));
        return AjaxResult.success(loginService.getVerifyCodeNew(phone)?"发送成功":"发送失败");
    }
    @ApiOperation("校验验证码")