From dede918f34b299be836493cf92776746e910b593 Mon Sep 17 00:00:00 2001 From: guanj Date: Fri, 24 Oct 2025 16:17:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A9=BE=E9=A9=B6=E8=88=B1?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system-boot/csstatisticalset.ts | 8 + .../cockpit/governanceReport/index.vue | 23 +- .../listOfMainMonitoringPoints/index.vue | 22 +- .../cockpit/trendComparison/index.vue | 19 +- src/layouts/admin/router-view/main.vue | 208 +++++++++--------- src/utils/router.ts | 44 +++- .../homePage/components/routingConfig.vue | 161 ++++++++++++++ src/views/pqs/cockpit/homePage/index.vue | 68 ++++-- src/views/pqs/cockpit/realTimeData/index.vue | 2 +- .../pqs/cockpit/setUp/components/popup.vue | 61 ++--- src/views/pqs/cockpit/setUp/index.vue | 7 +- .../setting/dictionary/component/add.vue | 4 +- 12 files changed, 454 insertions(+), 173 deletions(-) create mode 100644 src/views/pqs/cockpit/homePage/components/routingConfig.vue diff --git a/src/api/system-boot/csstatisticalset.ts b/src/api/system-boot/csstatisticalset.ts index f72e219..7ddae60 100644 --- a/src/api/system-boot/csstatisticalset.ts +++ b/src/api/system-boot/csstatisticalset.ts @@ -77,3 +77,11 @@ export const queryByPagePath = (params: any) => { params }) } +// 根据用户id查询用户驾驶舱 +export const getDashboardPageByUserId = (params: any) => { + return createAxios({ + url: '/system-boot/dashboard/getDashboardPageByUserId', + method: 'post', + params + }) +} diff --git a/src/components/cockpit/governanceReport/index.vue b/src/components/cockpit/governanceReport/index.vue index ce917b8..3265470 100644 --- a/src/components/cockpit/governanceReport/index.vue +++ b/src/components/cockpit/governanceReport/index.vue @@ -1,7 +1,7 @@