|
@@ -85,7 +85,10 @@ export class RouterBus {
|
|
|
this.router.push({ path: "/mockTest", query: this.route.query });
|
|
|
};
|
|
|
/** 错题重阅 */
|
|
|
- goWrongReview = (id: number) => {
|
|
|
- this.router.push({ path: "/wrongReview", query: this.route.query });
|
|
|
+ goWrongReview = (ids: number | number[]) => {
|
|
|
+ this.router.push({
|
|
|
+ path: "/wrongReview",
|
|
|
+ query: { ...this.route.query, wrongIds: ids },
|
|
|
+ });
|
|
|
};
|
|
|
}
|