hookehuyr

🐞 fix: 跳转详情页带参数问题

......@@ -131,7 +131,8 @@ export default {
query: {
prod_id: this.item.id,
type: this.item.type, // 特殊标识,判断入口 为keepAlive使用
perf_id: this.item.perf_id
perf_id: this.item.perf_id,
book_id: this.item.book_id
}
});
},
......@@ -139,7 +140,8 @@ export default {
this.$router.push({
path: '/client/videoDetail/comment',
query: {
prod_id: this.item.id
prod_id: this.item.id,
book_id: this.item.book_id
}
});
}
......