ZQN
2024-06-22 b48de0e35c54bd4715f8de2b86bac5a539c27275
project-admin/src/main/java/com/project/admin/controller/system/SysLoginController.java
@@ -56,6 +56,14 @@
        return AjaxResult.success(loginService.getVerifyCode(phone));
    }
    @ApiOperation("新注册获取验证码")
    @GetMapping("/verify/getNew")
    @RepeatSubmit
    public AjaxResult getVerifyCodeNew(@RequestParam("phone") String phone)
    {
        return AjaxResult.success(loginService.getVerifyCodeNew(phone));
    }
    @ApiOperation("校验验证码")
    @PostMapping("/verify/check")
    @RepeatSubmit