From 6aa07dc7565471990c2caa763d34159f633dc4e5 Mon Sep 17 00:00:00 2001
From: lai <371757574@qq.com>
Date: Tue, 18 Jun 2024 16:14:49 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B7=B3=E8=BD=AC=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/index/moduleInfo.vue | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/src/views/index/moduleInfo.vue b/src/views/index/moduleInfo.vue
index 6ca4488a..e343218a 100644
--- a/src/views/index/moduleInfo.vue
+++ b/src/views/index/moduleInfo.vue
@@ -5,6 +5,8 @@ import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { listSub } from '@/api/neUser/sub';
import { listUENumBySMF } from '@/api/neUser/smf';
import { listBase5G } from '@/api/neUser/base5G';
+import { useRouter } from 'vue-router';
+const router = useRouter();
const { t } = useI18n();
/**概览状态类型 */
@@ -87,6 +89,11 @@ async function fnGetSkim() {
}
}
+/**栏目信息跳转 */
+function fnToRouter(name: string, query?: any) {
+ router.push({ name, query });
+}
+
onMounted(() => {
fnGetSkim();
});
@@ -105,7 +112,7 @@ onMounted(() => {