diff --git a/lib/routes/huxiu/utils.js b/lib/routes/huxiu/utils.js index fa13706d6..7563cd8d6 100644 --- a/lib/routes/huxiu/utils.js +++ b/lib/routes/huxiu/utils.js @@ -14,15 +14,14 @@ const ProcessFeed = async (list, cache) => { const response = await got.get(link); const $ = cheerio.load(response.data); - $('.neirong-shouquan, .neirong-shouquan-public').remove(); return { - title: $('.t-h1') + title: $('.article__title') .text() .trim(), - description: $('.article-img-box').html() + $('.article-content-wrap').html(), - pubDate: date($('.article-time').text(), 8), - author: $('.article-author .author-name').text(), + description: $('.article__top-img-video') + $('.article__content').html(), + pubDate: date($('.article__bottom-content__right .article__time').text(), 8), + author: $('.article__author-info-box .author-info__username').text(), link, }; });