From 5d87b43e5299381a8fdd4af38b0c4f8d396d249e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BC=A0=E5=86=AC=E4=BF=8A?= <1005441938@qq.com>
Date: Tue, 9 Dec 2025 11:48:56 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/modules/compliance.js | 29 ++-
src/views/compliance/keypoint/index.vue | 139 +++++++++++++-
.../compliance/keypoint/rankingDetails.vue | 176 ++++++++++++++++++
src/views/compliance/statistics/index.vue | 2 +-
.../compliance/warningStatistics/index.vue | 144 +++++++++++++-
.../warningStatistics/indicatorDetails.vue | 144 ++++++++++++++
6 files changed, 626 insertions(+), 8 deletions(-)
create mode 100644 src/views/compliance/keypoint/rankingDetails.vue
create mode 100644 src/views/compliance/warningStatistics/indicatorDetails.vue
diff --git a/src/router/modules/compliance.js b/src/router/modules/compliance.js
index 6fe3144d..ed80026e 100644
--- a/src/router/modules/compliance.js
+++ b/src/router/modules/compliance.js
@@ -13,7 +13,10 @@ const layout = function(meta = {}) {
export default [
{
- ...layout(true),
+ ...layout(true,{
+ icon: 'customer-solid',
+ title: '申报自检结果统计'
+ }),
children: [
{
path: "statistics",
@@ -24,15 +27,19 @@ export default [
},
{
path: "alertstatistics",
+ hidden: true,
component: () => import("@/views/compliance/statistics/alertstatistics"),
meta: {
- title: "申报自检结果统计"
+ title: "申报自检结果统计2"
}
}
]
},
{
- ...layout(false),
+ ...layout(false,{
+ icon: 'customer-solid',
+ title: '重点企风险排名统计'
+ }),
children: [
{
path: "keypoint",
@@ -40,6 +47,14 @@ export default [
meta: {
title: "重点企风险排名统计"
}
+ },
+ {
+ path: "rankingDetails",
+ hidden: true,
+ component: () => import("@/views/compliance/keypoint/rankingDetails"),
+ meta: {
+ title: "重点企业排名统计"
+ }
}
]
},
@@ -52,6 +67,14 @@ export default [
meta: {
title: "指标预警排名统计"
}
+ },
+ {
+ path: "indicatorDetails",
+ hidden: true,
+ component: () => import("@/views/compliance/warningStatistics/indicatorDetails"),
+ meta: {
+ title: "申报自检结果统计2"
+ }
}
]
}
diff --git a/src/views/compliance/keypoint/index.vue b/src/views/compliance/keypoint/index.vue
index 55e259f7..447922b3 100644
--- a/src/views/compliance/keypoint/index.vue
+++ b/src/views/compliance/keypoint/index.vue
@@ -1,3 +1,138 @@
-