Browse Source

更新文件 articleTweetAction.java

陈士柏 2 years ago
parent
commit
b3b605a886
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mhotel/src/com/happy/action/articleTweetAction.java

+ 1 - 1
mhotel/src/com/happy/action/articleTweetAction.java

@@ -596,7 +596,7 @@ public class articleTweetAction extends BaseController implements ModelDriven<Ar
 
     public String queryManageArticlePage() {
         JSONObject jsonObject = new JSONObject();
-        IPage<ArticleListVo> result = articleTweetService.queryManageArticlesPage(keyWord, null, page, rows);
+        IPage<ArticleListVo> result = articleTweetService.queryManageArticlesPage(articleTweetDto.getKeyWord(), null, page, rows);
         if (result.getPageList().size() > 0) {
             String articleIds = StringUtils.join(result.getPageList().stream().map(ArticleListVo::getId).collect(Collectors.toList()), ",");
             List<FileInfo> fileInfos = articleTweetService.queryList("and link_id in (" + articleIds + ")");