From cdf9298f58fe2fd97fb7c7cb91272c55471ccc36 Mon Sep 17 00:00:00 2001 From: gaoyuanwei <2826352639@qq.com> Date: Wed, 15 Jun 2022 15:31:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/views/assignCase/components/queryPage.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/front/src/views/assignCase/components/queryPage.vue b/front/src/views/assignCase/components/queryPage.vue index dd81590c..946f50bc 100644 --- a/front/src/views/assignCase/components/queryPage.vue +++ b/front/src/views/assignCase/components/queryPage.vue @@ -56,7 +56,7 @@ 发布时间 {{ item.time }}

-
查看详情
+
查看详情
@@ -85,6 +85,8 @@ // import { pinyin } from 'pinyin-pro' // import { Empty } from 'ant-design-vue' + const router = useRouter() + const contenBox = ref([ { photo: require('@/assets/assignCase/road.png'), @@ -180,6 +182,11 @@ const moretext = ref('查看更多') const nomore = ref('true') const hidetext = ref('false') + + // 跳转 + const lookContent = (val) => { + router.push({ path: 'AssignCaseDetailPage', query: { val } }) + }