|
@@ -14,7 +14,7 @@
|
|
|
<text class="words">字数:{{bookWordsFormat(book.book_word_count)}}</text>
|
|
|
<div class="user-operator">
|
|
|
<!-- <text class="add" @click="addShelf">{{book.is_on_user_shelf ? '已加入' : '加入书架'}}</text> -->
|
|
|
- <text class="read" @click="toRead(book.first_cid)">立即阅读</text>
|
|
|
+ <text class="read" @click="toRead(book.record_chapter_id?book.record_chapter_id:book.first_cid)">立即阅读</text>
|
|
|
</div>
|
|
|
</div>
|
|
|
</x-book>
|
|
@@ -87,6 +87,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
toRead(cid = "", needCharge = 0) {
|
|
|
+ console.log(cid)
|
|
|
if (needCharge == 1) {
|
|
|
this.chapter_sequence = needCharge
|
|
|
router.push({
|