Browse Source

新建路由

maxiaoxiao 9 months ago
parent
commit
1ab954762e
3 changed files with 53 additions and 0 deletions
  1. 12 0
      src/router/index.js
  2. 41 0
      src/views/LandscapeProject/index.vue
  3. 0 0
      src/views/farmlandProtection/index.vue

+ 12 - 0
src/router/index.js

@@ -89,6 +89,18 @@ export const constantRoutes = [{
             import('@/views/complianceAnalysis/index.vue'),
         hidden: true
     },
+    {
+        path: '/LandscapeProject',
+        component: () =>
+            import('@/views/LandscapeProject/index.vue'),
+        hidden: true
+    },
+    {
+        path: '/farmlandProtection',
+        component: () =>
+            import('@/views/farmlandProtection/index.vue'),
+        hidden: true
+    },
 
 
     ]

+ 41 - 0
src/views/LandscapeProject/index.vue

@@ -0,0 +1,41 @@
+<!--山水工程列表-->
+<template>
+  <!-- <div class="ghzc LandscapeProject">
+    <div class="innerContainer leftPane" v-drag>
+      <h2 class="Pangetitle darg-div">
+        <span class="pange_text">山水工程列表</span>
+      </h2>
+    </div>
+  </div> -->
+  <div>12223<Boxcommon></Boxcommon></div>
+</template>
+
+<script>
+// import Hgxsc from "./components/hgxsc.vue";
+import Boxcommon from "@/views/cockpit/common/VectorSpace/BoxCommonVector.vue";
+export default {
+  name: "LandscapeProject",
+  components: {
+    Boxcommon,
+  },
+  data() {
+    return {};
+  },
+  created() {},
+  mounted() {},
+  methods: {
+    changeData(name, updata) {
+      this[name] = updata;
+    },
+  },
+  watch: {
+    activeTabs(newValue) {},
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+</style>
+<style lang="scss">
+@import "../complianceAnalysis//ghzc.scss";
+</style>

+ 0 - 0
src/views/farmlandProtection/index.vue