diff --git a/src/api/book.js b/src/api/book.js
index 6943c64..4d98b58 100644
--- a/src/api/book.js
+++ b/src/api/book.js
@@ -4,6 +4,10 @@ export function getBookById(bookId) {
return request.get(`/book/${bookId}`);
}
+export function getLastChapterAbout(params) {
+ return request.get('/book/lastChapterAbout', { params });
+}
+
export function getBookContent(chapterId) {
return request.get(`/book/content/${chapterId}`);
}
diff --git a/src/components/book/LastChapterAbout.vue b/src/components/book/LastChapterAbout.vue
new file mode 100644
index 0000000..f928f6f
--- /dev/null
+++ b/src/components/book/LastChapterAbout.vue
@@ -0,0 +1,64 @@
+
+
+ 最新章节
+ ({{chapterAbout.chapterTotal}}章)
+
+
+