@@ -68,7 +68,7 @@ export const constantRoutes = [{
{
path: '/complianceAnalysis',
component: () =>
- import('@/views/complianceAnalysis'),
+ import('@/views/complianceAnalysis/index.vue'),
hidden: true
},
@@ -1,44 +0,0 @@
-<template>
- <div class="complianceAnalysis">
- <div class="innerContainer leftPane">智能规划选址</div>
- </div>
- </template>
-
- <script>
- export default {
- name: "complianceAnalysis",
- data() {
- return {};
- },
- created() {},
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- .complianceAnalysis {
- width: 100%;
- height: 100%;
- position: absolute;
- }
- .innerContainer {
- width: 350px;
- height: calc(100% - 20px);
- background: #041024;
- z-index: 99;
- top: 10px;
- background-image: url("/static/images/homepage/00-底框.png");
- background-size: 100% 100%;
- .leftPane {
- left: 10px;
- .rightPane {
- right: 10px;
- </style>
@@ -0,0 +1,44 @@
+<!--合规性分析-->
+<template>
+ <div class="complianceAnalysis">
+ <div class="innerContainer leftPane">合规性分析</div>
+ </div>
+</template>
+
+<script>
+export default {
+ name: "complianceAnalysis",
+ data() {
+ return {};
+ },
+ created() {},
+ methods: {},
+};
+</script>
+<style lang="scss" scoped>
+.complianceAnalysis {
+ width: 100%;
+ height: 100%;
+ position: absolute;
+}
+.innerContainer {
+ width: 350px;
+ height: calc(100% - 20px);
+ background: #041024;
+ z-index: 99;
+ top: 10px;
+ background-image: url("/static/images/homepage/00-底框.png");
+ background-size: 100% 100%;
+.leftPane {
+ left: 10px;
+.rightPane {
+ right: 10px;
+</style>