|
@@ -627,7 +627,15 @@ export default {
|
|
|
// return false;
|
|
|
// }
|
|
|
sessionStorage.setItem("Bookdetail", JSON.stringify(row));
|
|
|
- this.$router.push("/input?bookId=" + row.id);
|
|
|
+ if (row.courseware_category === "RLC") {
|
|
|
+ this.$router.push(
|
|
|
+ "/GCLS-Book-Component-RLC/#/adultInput?bookId=" + row.id
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ this.$router.push(
|
|
|
+ "/GCLS-Book-Component-NPC/#/adultInput?bookId=" + row.id
|
|
|
+ );
|
|
|
+ }
|
|
|
},
|
|
|
// 预览
|
|
|
handleView(row) {
|