瀏覽代碼

合规性分析

maxiaoxiao 1 年之前
父節點
當前提交
417364c9a1
共有 3 個文件被更改,包括 45 次插入45 次删除
  1. 1 1
      src/router/index.js
  2. 0 44
      src/views/complianceAnalysis.vue
  3. 44 0
      src/views/complianceAnalysis/index.vue

+ 1 - 1
src/router/index.js

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