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 @@
-