Commit f73a8158a7de4b12d1cf6eba1e1ff0a3c15967ff

Authored by litao
1 parent ee4c97dea1

二维码获取类型抽取

Showing 1 changed file with 3 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ScanController.java View file @ f73a815
... ... @@ -30,8 +30,9 @@
30 30 */
31 31 @RequestMapping("/scan")
32 32 public void scan(HttpServletResponse httpServletResponse, String code) throws Exception {
33   -// httpServletResponse.sendRedirect("http://m.healthbaby.com.cn/download/download.html");
34   - httpServletResponse.sendRedirect(couponService.findUrl(code, type));
  33 +
  34 + httpServletResponse.sendRedirect("http://m.healthbaby.com.cn/download/download.html");
  35 +// httpServletResponse.sendRedirect(couponService.findUrl(code, type));
35 36 }
36 37  
37 38 }