Kaynağa Gözat

合规性分析

maxiaoxiao 1 yıl önce
ebeveyn
işleme
417364c9a1

+ 1 - 1
src/router/index.js

@@ -68,7 +68,7 @@ export const constantRoutes = [{
     {
         path: '/complianceAnalysis',
         component: () =>
-            import('@/views/complianceAnalysis'),
+            import('@/views/complianceAnalysis/index.vue'),
         hidden: true
     },
 

+ 0 - 44
src/views/complianceAnalysis.vue

@@ -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);
-    position: absolute;
-    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>
-  

+ 44 - 0
src/views/complianceAnalysis/index.vue

@@ -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);
+  position: absolute;
+  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>