Commit 01e7ae2a authored by liqin's avatar liqin 💬

bug fixed

parent d309280f
......@@ -287,8 +287,8 @@ public class LoginController extends BaseController {
@ApiOperation(value = "H5/PAD登录二维码", notes = "H5/PAD登录二维码", httpMethod = "GET")
@GetMapping(value = "loginByQrCode")
public ResponseEntity<byte[]> loginByQrCode(@RequestParam(value = "width", required = false, defaultValue = "120") int width,
@RequestParam(value = "height", required = false, defaultValue = "120") int height,
public ResponseEntity<byte[]> loginByQrCode(@RequestParam(value = "width", required = false, defaultValue = "150") int width,
@RequestParam(value = "height", required = false, defaultValue = "150") int height,
HttpServletRequest request) {
String regFullUrl = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + "/h5";
QrConfig config = new QrConfig(width, height);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment