Sfoglia il codice sorgente

添加三维模型

Morales 5 mesi fa
parent
commit
8eb4b300a2
5 ha cambiato i file con 287 aggiunte e 1106 eliminazioni
  1. 3 0
      .gitignore
  2. 260 1106
      heida/pnpm-lock.yaml
  3. 1 0
      heida/src/components/TheMenu.vue
  4. 5 0
      heida/src/router/index.js
  5. 18 0
      heida/src/views/gis/index.vue

+ 3 - 0
.gitignore

@@ -1,2 +1,5 @@
 /ljxq/intelligentMonitoring
 /ljxq/*.zip
+
+/heida/*.zip
+/heida/heida

File diff suppressed because it is too large
+ 260 - 1106
heida/pnpm-lock.yaml


+ 1 - 0
heida/src/components/TheMenu.vue

@@ -26,6 +26,7 @@ export default {
         { name: '进度管理', url: 'schedule' },
         { name: '人员管理', url: 'personnel' },
         { name: '材料管理', url: 'material' },
+        { name: '三维模型', url: 'gis' },
         // { name: '机械管理', url: 'mechanical' },
         { name: '视频监控', url: 'video' }
       ]

+ 5 - 0
heida/src/router/index.js

@@ -49,6 +49,11 @@ const routes = [
     name: 'mechanical',
     component: () => import('../views/mechanical/index.vue')
   },
+  {
+    path: '/gis',
+    name: 'gis',
+    component: () => import('../views/gis/index.vue')
+  },
   {
     path: '/video',
     name: 'video',

+ 18 - 0
heida/src/views/gis/index.vue

@@ -0,0 +1,18 @@
+<template>
+  <dv-loading v-if="!showPage" style="width: 100%; height: 100%" class="the-loading">Loading...</dv-loading>
+  <div v-else class="gis" style="width: 100%; height: 100%; border: 0; padding: 10px">
+    <iframe src="https://www.harbinxiaoshi.cn:10000/data/project_0/0029_HeiDaXiaoQuGaiZao/" 
+    frameborder="0" style="width: 100%; height: 100%; overflow: hidden;border: 0;" scrolling="auto"></iframe>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'gis',
+  data() {
+    return {
+      showPage: true
+    }
+  }
+}
+</script>

Some files were not shown because too many files changed in this diff