diff --git a/src/views/Guidance.vue b/src/views/Guidance.vue index b79c7d2..4332880 100644 --- a/src/views/Guidance.vue +++ b/src/views/Guidance.vue @@ -53,7 +53,7 @@ export default { } else { //阅读完整 - this.$router.push({ name: '', params: {} }) + this.$router.push({ name: 'examination' }) } }, //监听阅读进度 diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index f60e2b5..88fc288 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -38,7 +38,7 @@
-
我的预约
+
我的预约
@@ -74,6 +74,10 @@ export default { } }, methods: { + //跳转我的预约列表 + goMyBook() { + this.$router.push({ name: 'MyExam' }); + }, testAlert() { lightAppJssdk.notification.alert({ message: "这是一个弹窗", @@ -94,7 +98,7 @@ export default { //阅读须知 doGuidance() { // this.guideShow = true; - this.$router.push({name:'guidance',query:{deptId:1}}) + this.$router.push({ name: 'guidance', query: { deptId: 1 } }) }, } };