Browse Source

数字水利 水库资源、涉水桥涵资源

wangzhe 2 years ago
parent
commit
fd36322299
3 changed files with 1122 additions and 0 deletions
  1. 8 0
      src/api/datacenter.js
  2. 16 0
      src/router/index.js
  3. 1098 0
      src/views/gather.vue

+ 8 - 0
src/api/datacenter.js

@@ -8,6 +8,14 @@ export function getResource() {
   })
 }
 
+// 获取左侧菜单列表
+export function getWaterDataGather() {
+  return request({
+    url: '/center-water/VisuForestDataCenterController/getWaterDataGather',
+    method: 'post',
+  })
+}
+
 //点击左侧菜单列表查询落点
 export function getResourcePoint(resourceTable) {
   return request({

+ 16 - 0
src/router/index.js

@@ -101,6 +101,14 @@ export const constantRoutes = [{
   //   }
   // },
   {
+    path: '/gather',
+    name: 'gather',
+    component: () => import('@/views/gather'),
+    meta: {
+      title: '监测分析'
+    }
+  },
+  {
     path: '/bigdata',
     name: 'bigdata',
     component: () => import('@/views/bigdata/bigdata'),
@@ -185,6 +193,14 @@ export const constantRoutesNew = [{
     }
   },
   {
+    path: '/gather',
+    name: 'gather',
+    component: () => import('@/views/gather'),
+    meta: {
+      title: '监测分析'
+    }
+  },
+  {
     path: '/bigdata',
     name: 'bigdata',
     component: () => import('@/views/bigdata/bigdata'),

File diff suppressed because it is too large
+ 1098 - 0
src/views/gather.vue