Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(route): jandan add 煎蛋女装图 #7327

Merged
merged 1 commit into from
May 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/picture.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ R18 显示

<Route author="Xuanwo xyqfer" example="/jandan/pic" path="/jandan/:sub_model" :paramsDesc="['煎蛋板块名称']"/>

| 无聊图 | 无聊图热榜 | 4 小时热榜 |
| ------ | ---------- | ---------- |
| pic | top | top-4h |
| 无聊图 | 无聊图热榜 | 4 小时热榜 | 女装 | 随手拍 | 随手拍热榜 |
| ------ | ---------- | ---------- | -------- | ---------- | ----------|
| pic | top | top-4h | girl | ooxx | top-ooxx |

### 首页

Expand Down
11 changes: 8 additions & 3 deletions lib/routes/jandan/pic.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,17 @@ module.exports = async (ctx) => {
break;

case 'ooxx':
rss_title = '煎蛋妹子图';
description = '这儿才是正版妹子图。';
rss_title = '煎蛋随手拍';
description = '分享你的经典一刻。';
break;

case 'girl':
rss_title = '煎蛋女装图';
description = '';
break;

case 'top-ooxx':
rss_title = '煎蛋妹子图热榜';
rss_title = '煎蛋随手拍热榜';
description = '';
break;

Expand Down