From e181f04c642204e79749af93fa921875ff6c21ba Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期二, 20 五月 2025 10:46:35 +0800 Subject: [PATCH] refactor(qms): 重构趋势图展示逻辑 --- src/views/redirect/index.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/redirect/index.vue b/src/views/redirect/index.vue index 48333ba..97a6556 100644 --- a/src/views/redirect/index.vue +++ b/src/views/redirect/index.vue @@ -1,14 +1,14 @@ <template> - <div></div> + <div></div> </template> <script setup> -import { useRoute, useRouter } from 'vue-router' +import { useRoute, useRouter } from 'vue-router'; const route = useRoute(); const router = useRouter(); -const { params, query } = route -const { path } = params +const { params, query } = route; +const { path } = params; -router.replace({ path: '/' + path, query }) +router.replace({ path: '/' + path, query }); </script> -- Gitblit v1.9.3