hookehuyr

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

...@@ -131,7 +131,8 @@ export default { ...@@ -131,7 +131,8 @@ export default {
131 query: { 131 query: {
132 prod_id: this.item.id, 132 prod_id: this.item.id,
133 type: this.item.type, // 特殊标识,判断入口 为keepAlive使用 133 type: this.item.type, // 特殊标识,判断入口 为keepAlive使用
134 - perf_id: this.item.perf_id 134 + perf_id: this.item.perf_id,
135 + book_id: this.item.book_id
135 } 136 }
136 }); 137 });
137 }, 138 },
...@@ -139,7 +140,8 @@ export default { ...@@ -139,7 +140,8 @@ export default {
139 this.$router.push({ 140 this.$router.push({
140 path: '/client/videoDetail/comment', 141 path: '/client/videoDetail/comment',
141 query: { 142 query: {
142 - prod_id: this.item.id 143 + prod_id: this.item.id,
144 + book_id: this.item.book_id
143 } 145 }
144 }); 146 });
145 } 147 }
......