/** * 米客中心-我的图片(滚动加载) * * @return */ public String userImageJson() { // 查询用户制作的所有图片 this.userImageList = userImageService.getUserImageListByUserId(tagName, this.userId, begin, size); this.generateJsonResult(JsonResult.CODE.SUCCESS, JsonResult.MESSAGE.SUCCESS); this.jsonResult.put("userImageList", userImageList); return JSON; }
/** * 米客中心-我的图片 * * @return */ public String userImage() { statsMap(); // 用户制作的所有图片对应的标签 this.tagList = tagService.getUserImageTagListByUserId(this.userId, 0, 30); // 查询用户制作的所有图片 this.userImageList = userImageService.getUserImageListByUserId(tagName, this.userId, begin, size); this.tab = "userImage"; return "userImage"; }