From 3fe52e48234a87389c2d2d79255f6bf98c564a27 Mon Sep 17 00:00:00 2001 From: lmj <3407000732@qq.com> Date: Thu, 9 Jun 2022 17:52:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E8=A1=8C=E6=A6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/portal/case/Detail.vue | 5 +++-- src/views/portal/case/Index.vue | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/portal/case/Detail.vue b/src/views/portal/case/Detail.vue index 746da803..ece844d3 100644 --- a/src/views/portal/case/Detail.vue +++ b/src/views/portal/case/Detail.vue @@ -190,8 +190,9 @@ export default { }, methods: { jumpRouter(item) { - console.log(item) - this.$router.push(`./Detail.vue?id=${item.id}`); + // console.log(item) + location.href =`${this.webBaseUrl}/case/detail?id=${item.id}` + // this.$router.push(`/case/detail?id=${item.id}`); }, createPlayUrl(u){ let nowDate=new Date(); diff --git a/src/views/portal/case/Index.vue b/src/views/portal/case/Index.vue index 96a960d9..ae6f4ec0 100644 --- a/src/views/portal/case/Index.vue +++ b/src/views/portal/case/Index.vue @@ -614,6 +614,7 @@ export default { }, jumpRouter(item) { + // console.log(item) this.$router.push(`/case/detail?id=${item.id}`); } }