feat: 新增小说同类推荐

This commit is contained in:
xiongxiaoyang
2022-05-15 20:49:07 +08:00
parent 260c6827c0
commit 04ff469b3a
5 changed files with 139 additions and 161 deletions

View File

@@ -8,6 +8,10 @@ export function getLastChapterAbout(params) {
return request.get('/book/lastChapterAbout', { params });
}
export function listRecBooks(params) {
return request.get('/book/recList', { params });
}
export function getBookContent(chapterId) {
return request.get(`/book/content/${chapterId}`);
}