|
@@ -628,13 +628,11 @@ export default {
|
|
|
// }
|
|
|
sessionStorage.setItem("Bookdetail", JSON.stringify(row));
|
|
|
if (row.courseware_category === "RLC") {
|
|
|
- this.$router.push(
|
|
|
- "/GCLS-Book-Component-RLC/#/adultInput?bookId=" + row.id
|
|
|
- );
|
|
|
+ location.href =
|
|
|
+ "/GCLS-Book-Component-RLC/#/adultInput?bookId=" + row.id;
|
|
|
} else {
|
|
|
- this.$router.push(
|
|
|
- "/GCLS-Book-Component-NPC/#/adultInput?bookId=" + row.id
|
|
|
- );
|
|
|
+ location.href =
|
|
|
+ "/GCLS-Book-Component-NPC/#/adultInput?bookId=" + row.id;
|
|
|
}
|
|
|
},
|
|
|
// 预览
|