@@ -1,2 +1,5 @@
/ljxq/intelligentMonitoring
/ljxq/*.zip
+
+/heida/*.zip
+/heida/heida
@@ -26,6 +26,7 @@ export default {
{ name: '进度管理', url: 'schedule' },
{ name: '人员管理', url: 'personnel' },
{ name: '材料管理', url: 'material' },
+ { name: '三维模型', url: 'gis' },
// { name: '机械管理', url: 'mechanical' },
{ name: '视频监控', url: 'video' }
]
@@ -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',
@@ -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 {
+ data() {
+ return {
+ showPage: true
+ }
+}
+</script>