feat: bigger zimuzu img

This commit is contained in:
DIYgod 2020-06-29 01:14:59 +08:00
parent f319d075e1
commit 296804a4da
No known key found for this signature in database
GPG Key ID: D159328F47A80DCA
2 changed files with 2 additions and 2 deletions

View File

@ -553,7 +553,7 @@ pageClass: routes
### 排行榜
<Route author="queensferryme" example="/zimuzu/top/week/movie" path="/zimuzu/top/:range/:type" :paramsDesc="['时间范围, 可以是 `week` `month` `year` `total`', '排行类型, 可以是 `fav` `tv` `movie`']">
<Route author="queensferryme DIYgod" example="/zimuzu/top/week/movie" path="/zimuzu/top/:range/:type" :paramsDesc="['时间范围, 可以是 `week` `month` `year` `total`', '排行类型, 可以是 `fav` `tv` `movie`']">
例如,路由 `/zimuzu/top/week/movie` 应该输出 <http://www.rrys2019.com/html/top/week_movie_list.html> 的排行榜单

View File

@ -18,7 +18,7 @@ module.exports = async (ctx) => {
item = $(item);
return {
title: item.find('.info a').first().text(),
description: item.find('.info p').first().html() + `<img src='${item.find('.img img').first().attr('rel')}'>`,
description: item.find('.info p').first().html() + '<br>' + item.find('.a1 p').html() + '<br>' + `<img src='${item.find('.img img').first().attr('rel').replace('m_', '')}'>`,
link: item.find('.info a').first().attr('href'),
};
})