Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -43,7 +43,7 @@ | ... | @@ -43,7 +43,7 @@ |
| 43 | </van-sticky> --> | 43 | </van-sticky> --> |
| 44 | <template v-for="(item, key) in kgInfo.book_list" :key="key"> | 44 | <template v-for="(item, key) in kgInfo.book_list" :key="key"> |
| 45 | <book-card v-if="item.show" :type="USER_ROLE.CLIENT" :item="item" | 45 | <book-card v-if="item.show" :type="USER_ROLE.CLIENT" :item="item" |
| 46 | - @on-click="go('/client/bookDetail', { id: item.id, kg_id })" /> | 46 | + @on-click="go('/client/bookDetail', { id: item.id })" /> |
| 47 | </template> | 47 | </template> |
| 48 | <van-empty v-if="emptyStatus" class="custom-image" :image="no_image" description="暂无书籍信息" /> | 48 | <van-empty v-if="emptyStatus" class="custom-image" :image="no_image" description="暂无书籍信息" /> |
| 49 | </div> | 49 | </div> | ... | ... |
| ... | @@ -84,7 +84,7 @@ const props = defineProps({ | ... | @@ -84,7 +84,7 @@ const props = defineProps({ |
| 84 | setTimeout(() => { | 84 | setTimeout(() => { |
| 85 | // TAG:微信分享 | 85 | // TAG:微信分享 |
| 86 | // 自定义分享内容 | 86 | // 自定义分享内容 |
| 87 | - sharePage({ title: `${props.info.name}-${props.info.book_name}`, imgUrl: props.info.cover }); | 87 | + sharePage({ title: `${props.info.name}-${props.info.book_name}-${props.info.localism_type}-${props.info.kg_name}`, imgUrl: props.info.cover }); |
| 88 | }, 500); | 88 | }, 500); |
| 89 | 89 | ||
| 90 | const go = useGo(); | 90 | const go = useGo(); | ... | ... |
-
Please register or login to post a comment