From 4f55f7d94198eca8eba9ae6b85af19a07cac2f79 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 29 Apr 2022 17:23:55 +0800
Subject: [PATCH] 内容修改
---
src/router/page/index.js | 70 +++++++++++++++++++++++++++++++++-
1 files changed, 67 insertions(+), 3 deletions(-)
diff --git a/src/router/page/index.js b/src/router/page/index.js
index 6451a86..815e3a0 100644
--- a/src/router/page/index.js
+++ b/src/router/page/index.js
@@ -2,7 +2,7 @@
* @Author: Morpheus
* @Date: 2021-04-30 14:12:09
* @Last Modified by: Morpheus
- * @Last Modified time: 2022-03-28 14:34:15
+ * @Last Modified time: 2022-04-28 13:53:48
*/
import Vue from 'vue'
@@ -53,6 +53,15 @@
const pcToolRanging = () => import('../../pcviews/tool/ranging.vue')
const pcToolArea = () => import('../../pcviews/tool/area.vue')
const pcToolLayerManage = () => import('../../pcviews/tool/layer-manage.vue')
+
+const pcTechnique = () => import('../../pcviews/technique/index.vue')
+const pcTechniqueMapData = () => import('../../pcviews/technique/map.vue')
+const pcTechniqueVideo = () => import('../../pcviews/technique/video.vue')
+const pcTechniqueData = () => import('../../pcviews/technique/data.vue')
+const pcTechniqueTurf = () => import('../../pcviews/technique/turf.vue')
+const pcTechniqueSpace = () => import('../../pcviews/technique/space.vue')
+const pcTechniqueGraph = () => import('../../pcviews/technique/graph.vue')
+const pcTechniquePath = () => import('../../pcviews/technique/path.vue')
const routes = [
// 大屏页面
@@ -355,8 +364,63 @@
}
}
]
- }
- ]
+ },
+ {
+ path: 'technique',
+ component: pcTechnique,
+ meta: {
+ title: '创新'
+ },
+ children: [{
+ path: 'map',
+ component: pcTechniqueMapData,
+ meta: {
+ title: '地图数据加载'
+ }
+ }, {
+ path: 'video',
+ component: pcTechniqueVideo,
+ meta: {
+ title: '视频融合'
+ }
+ },
+ {
+ path: 'data',
+ component: pcTechniqueData,
+ meta: {
+ title: '数据动画和特效'
+ }
+ },
+ {
+ path: 'turf',
+ component: pcTechniqueTurf,
+ meta: {
+ title: 'turf计算'
+ }
+ },
+ {
+ path: 'space',
+ component: pcTechniqueSpace,
+ meta: {
+ title: '三维空间分析'
+ }
+ },
+ {
+ path: 'graph',
+ component: pcTechniqueGraph,
+ meta: {
+ title: '第三方图形库的集成'
+ }
+ },
+ {
+ path: 'path',
+ component: pcTechniquePath,
+ meta: {
+ title: '路径漫游和定点巡航'
+ }
+ }
+ ]
+ }]
}]
},
// 手机端
--
Gitblit v1.9.3