|
|
@@ -22,9 +22,7 @@ public class OpenAppHomeController extends BaseApiController{
|
|
|
@RequestMapping(value = "/getHomePageData", method = RequestMethod.GET)
|
|
|
public Result getHomePageData(HttpServletRequest request){
|
|
|
Result res = new Result();
|
|
|
- String path = request.getContextPath();
|
|
|
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
|
|
- System.out.println("path:-------------------"+path);
|
|
|
+ String basePath = request.getServerName();
|
|
|
System.out.println("basePath:-------------------"+basePath);
|
|
|
res.setData(appHomePageService.getAppHomePage());
|
|
|
return res;
|