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 @@ \ No newline at end of file +
+ + + +
+ + + + + + + + +
+ +
+
+
+ + + \ No newline at end of file diff --git a/src/views/compliance/keypoint/rankingDetails.vue b/src/views/compliance/keypoint/rankingDetails.vue new file mode 100644 index 00000000..6e421b8c --- /dev/null +++ b/src/views/compliance/keypoint/rankingDetails.vue @@ -0,0 +1,176 @@ + + + \ No newline at end of file diff --git a/src/views/compliance/statistics/index.vue b/src/views/compliance/statistics/index.vue index 58fb943c..300d9c7b 100644 --- a/src/views/compliance/statistics/index.vue +++ b/src/views/compliance/statistics/index.vue @@ -255,7 +255,7 @@ export default { this.isExpanded = !this.isExpanded; }, handleClick(row){ - this.$router.push({path:`/declare/statistics`, name:'statistics', menu:true, meta:{title:'按户次查询明细'}}) + this.$router.push({path:`/compliance/alertstatistics`, query:{}}) } }, computed: { diff --git a/src/views/compliance/warningStatistics/index.vue b/src/views/compliance/warningStatistics/index.vue index c549b726..f887fd0c 100644 --- a/src/views/compliance/warningStatistics/index.vue +++ b/src/views/compliance/warningStatistics/index.vue @@ -1,3 +1,143 @@ \ No newline at end of file +
+ + + +
+ + + + + + + + +
+ +
+
+
+ + + \ No newline at end of file diff --git a/src/views/compliance/warningStatistics/indicatorDetails.vue b/src/views/compliance/warningStatistics/indicatorDetails.vue new file mode 100644 index 00000000..85a4d4cf --- /dev/null +++ b/src/views/compliance/warningStatistics/indicatorDetails.vue @@ -0,0 +1,144 @@ + + + \ No newline at end of file